From e882c0dbb85fe0c8c548562ed7bd9e1b13e07b55 Mon Sep 17 00:00:00 2001 From: James Pepper Date: Tue, 9 Jun 2026 13:11:30 +0100 Subject: [PATCH 01/10] Add reanimated 4.1.6 patch; update .gitignore Add a patch file (patches/react-native-reanimated+4.1.6.patch) with native changes to react-native-reanimated (C++/Fabric updates, ReanimatedModuleProxy, headers and related Android build artifacts included in the patch). Update .gitignore to re-add the Xcode GoogleService-Info.plist entry and ignore build archives (*.tar.gz). This change applies local fixes/workarounds to the reanimated native code and prevents build archive files from being committed. --- .gitignore | 4 +- patches/react-native-reanimated+4.1.6.patch | 30794 ++++++++++++++++++ 2 files changed, 30797 insertions(+), 1 deletion(-) create mode 100644 patches/react-native-reanimated+4.1.6.patch diff --git a/.gitignore b/.gitignore index 963de90..c728d05 100644 --- a/.gitignore +++ b/.gitignore @@ -60,4 +60,6 @@ GoogleService-Info.plist android/app/google-services.json ios/BitSleuthWallet/GoogleService-Info.plist ios/GoogleService-Info.plist -ios/BitSleuthWallet.xcodeproj/GoogleService-Info.plist \ No newline at end of file +ios/BitSleuthWallet.xcodeproj/GoogleService-Info.plist +# Build archives +*.tar.gz diff --git a/patches/react-native-reanimated+4.1.6.patch b/patches/react-native-reanimated+4.1.6.patch new file mode 100644 index 0000000..a2b85b9 --- /dev/null +++ b/patches/react-native-reanimated+4.1.6.patch @@ -0,0 +1,30794 @@ +diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp +index bd8d43a..ee43dd1 100644 +--- a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp ++++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp +@@ -32,18 +32,6 @@ void UpdatesRegistry::flushUpdates(UpdatesBatch &updatesBatch) { + } + } + +-UpdatesBatch UpdatesRegistry::getPendingUpdates() { +- auto lock = std::lock_guard{mutex_}; +- flushUpdatesToRegistry(updatesBatch_); +- +- UpdatesBatch updatesBatch; +- for (const auto &[tag, pair] : updatesRegistry_) { +- const auto &[shadowNode, props] = pair; +- updatesBatch.emplace_back(shadowNode, props); +- } +- return updatesBatch; +-} +- + void UpdatesRegistry::collectProps(PropsMap &propsMap) { + std::lock_guard lock{mutex_}; + +diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h +index db03aa5..6f32763 100644 +--- a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h ++++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h +@@ -49,7 +49,6 @@ class UpdatesRegistry { + + void flushUpdates(UpdatesBatch &updatesBatch); + void collectProps(PropsMap &propsMap); +- UpdatesBatch getPendingUpdates(); + + protected: + mutable std::mutex mutex_; +diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp +index 081fddf..05acd4f 100644 +--- a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp ++++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp +@@ -35,82 +35,6 @@ static inline std::shared_ptr shadowNodeFromValue( + } + #endif + +-namespace { +- +-#ifdef ANDROID +-constexpr bool shouldUseSynchronousUpdatesInPerformOperations() { +- return StaticFeatureFlags::getFlag("ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS"); +-} +-#else +-constexpr bool shouldUseSynchronousUpdatesInPerformOperations() { +- return false; +-} +-#endif +- +-std::pair partitionUpdates( +- const UpdatesBatch &updatesBatch, +- const std::unordered_set &synchronousPropNames, +- const bool shouldRequireIntegerColors = false, +- const bool allowPartialViews = false) { +- UpdatesBatch synchronousUpdatesBatch; +- UpdatesBatch shadowTreeUpdatesBatch; +- +- for (const auto &[shadowNode, props] : updatesBatch) { +- if (allowPartialViews) { +- folly::dynamic synchronousProps = folly::dynamic::object(); +- folly::dynamic shadowTreeProps = folly::dynamic::object(); +- +- for (const auto &[key, value] : props.items()) { +- const auto keyStr = key.asString(); +- const bool isColorProp = +- keyStr == "color" || keyStr.find("Color") != std::string::npos; +- const bool isSynchronous = synchronousPropNames.contains(keyStr) && +- (!shouldRequireIntegerColors || !isColorProp || value.isInt()); +- if (isSynchronous) { +- synchronousProps[keyStr] = value; +- } else { +- shadowTreeProps[keyStr] = value; +- } +- } +- +- if (!synchronousProps.empty()) { +- synchronousUpdatesBatch.emplace_back( +- shadowNode, std::move(synchronousProps)); +- } +- +- if (!shadowTreeProps.empty()) { +- shadowTreeUpdatesBatch.emplace_back( +- shadowNode, std::move(shadowTreeProps)); +- } +- } else { +- bool hasOnlySynchronousProps = true; +- +- for (const auto &[key, value] : props.items()) { +- const auto keyStr = key.asString(); +- const bool isColorProp = +- keyStr == "color" || keyStr.find("Color") != std::string::npos; +- const bool isSynchronous = synchronousPropNames.contains(keyStr) && +- (!shouldRequireIntegerColors || !isColorProp || value.isInt()); +- if (!isSynchronous) { +- hasOnlySynchronousProps = false; +- break; +- } +- } +- +- if (hasOnlySynchronousProps) { +- synchronousUpdatesBatch.emplace_back(shadowNode, props); +- } else { +- shadowTreeUpdatesBatch.emplace_back(shadowNode, props); +- } +- } +- } +- +- return { +- std::move(synchronousUpdatesBatch), std::move(shadowTreeUpdatesBatch)}; +-} +- +-} // namespace +- + ReanimatedModuleProxy::ReanimatedModuleProxy( + const std::shared_ptr &workletsModuleProxy, + jsi::Runtime &rnRuntime, +@@ -768,428 +692,434 @@ void ReanimatedModuleProxy::performOperations() { + + shouldUpdateCssAnimations_ = false; + +- if constexpr (shouldUseSynchronousUpdatesInPerformOperations()) { +- applySynchronousUpdates(updatesBatch); +- } +- +- if ((updatesBatch.size() > 0) && +- updatesRegistryManager_->shouldReanimatedSkipCommit()) { +- updatesRegistryManager_->pleaseCommitAfterPause(); +- } +- } +- +- if (updatesRegistryManager_->shouldReanimatedSkipCommit()) { +- // It may happen that `performOperations` is called on the UI thread +- // while React Native tries to commit a new tree on the JS thread. +- // In this case, we should skip the commit here and let React Native do +- // it. The commit will include the current values from the updates manager +- // which will be applied in ReanimatedCommitHook. +- return; +- } +- +- commitUpdates(rt, updatesBatch); +- +- // Clear the entire cache after the commit +- // (we don't know if the view is updated from outside of Reanimated +- // so we have to clear the entire cache) +- viewStylesRepository_->clearNodesCache(); +-} +- +-void ReanimatedModuleProxy::performNonLayoutOperations() { +- ReanimatedSystraceSection s( +- "ReanimatedModuleProxy::performNonLayoutOperations"); +- +- UpdatesBatch updatesBatch = animatedPropsRegistry_->getPendingUpdates(); +- +- applySynchronousUpdates(updatesBatch, true); +-} +- +-void ReanimatedModuleProxy::applySynchronousUpdates( +- UpdatesBatch &updatesBatch, +- const bool allowPartialUpdates) { + #ifdef ANDROID +- static const std::unordered_set synchronousProps = { +- "opacity", +- "elevation", +- "zIndex", +- // "shadowOpacity", // not supported on Android +- // "shadowRadius", // not supported on Android +- "backgroundColor", +- // "color", // TODO: fix animating color of Animated.Text, +- "tintColor", +- "borderRadius", +- "borderTopLeftRadius", +- "borderTopRightRadius", +- "borderTopStartRadius", +- "borderTopEndRadius", +- "borderBottomLeftRadius", +- "borderBottomRightRadius", +- "borderBottomStartRadius", +- "borderBottomEndRadius", +- "borderStartStartRadius", +- "borderStartEndRadius", +- "borderEndStartRadius", +- "borderEndEndRadius", +- "borderColor", +- "borderTopColor", +- "borderBottomColor", +- "borderLeftColor", +- "borderRightColor", +- "borderStartColor", +- "borderEndColor", +- "transform", +- }; +- +- // NOTE: Keep in sync with NativeProxy.java +- static constexpr auto CMD_START_OF_VIEW = 1; +- static constexpr auto CMD_START_OF_TRANSFORM = 2; +- static constexpr auto CMD_END_OF_TRANSFORM = 3; +- static constexpr auto CMD_END_OF_VIEW = 4; +- +- static constexpr auto CMD_OPACITY = 10; +- static constexpr auto CMD_ELEVATION = 11; +- static constexpr auto CMD_Z_INDEX = 12; +- static constexpr auto CMD_SHADOW_OPACITY = 13; +- static constexpr auto CMD_SHADOW_RADIUS = 14; +- static constexpr auto CMD_BACKGROUND_COLOR = 15; +- static constexpr auto CMD_COLOR = 16; +- static constexpr auto CMD_TINT_COLOR = 17; +- +- static constexpr auto CMD_BORDER_RADIUS = 20; +- static constexpr auto CMD_BORDER_TOP_LEFT_RADIUS = 21; +- static constexpr auto CMD_BORDER_TOP_RIGHT_RADIUS = 22; +- static constexpr auto CMD_BORDER_TOP_START_RADIUS = 23; +- static constexpr auto CMD_BORDER_TOP_END_RADIUS = 24; +- static constexpr auto CMD_BORDER_BOTTOM_LEFT_RADIUS = 25; +- static constexpr auto CMD_BORDER_BOTTOM_RIGHT_RADIUS = 26; +- static constexpr auto CMD_BORDER_BOTTOM_START_RADIUS = 27; +- static constexpr auto CMD_BORDER_BOTTOM_END_RADIUS = 28; +- static constexpr auto CMD_BORDER_START_START_RADIUS = 29; +- static constexpr auto CMD_BORDER_START_END_RADIUS = 30; +- static constexpr auto CMD_BORDER_END_START_RADIUS = 31; +- static constexpr auto CMD_BORDER_END_END_RADIUS = 32; +- +- static constexpr auto CMD_BORDER_COLOR = 40; +- static constexpr auto CMD_BORDER_TOP_COLOR = 41; +- static constexpr auto CMD_BORDER_BOTTOM_COLOR = 42; +- static constexpr auto CMD_BORDER_LEFT_COLOR = 43; +- static constexpr auto CMD_BORDER_RIGHT_COLOR = 44; +- static constexpr auto CMD_BORDER_START_COLOR = 45; +- static constexpr auto CMD_BORDER_END_COLOR = 46; +- +- static constexpr auto CMD_TRANSFORM_TRANSLATE_X = 100; +- static constexpr auto CMD_TRANSFORM_TRANSLATE_Y = 101; +- static constexpr auto CMD_TRANSFORM_SCALE = 102; +- static constexpr auto CMD_TRANSFORM_SCALE_X = 103; +- static constexpr auto CMD_TRANSFORM_SCALE_Y = 104; +- static constexpr auto CMD_TRANSFORM_ROTATE = 105; +- static constexpr auto CMD_TRANSFORM_ROTATE_X = 106; +- static constexpr auto CMD_TRANSFORM_ROTATE_Y = 107; +- static constexpr auto CMD_TRANSFORM_ROTATE_Z = 108; +- static constexpr auto CMD_TRANSFORM_SKEW_X = 109; +- static constexpr auto CMD_TRANSFORM_SKEW_Y = 110; +- static constexpr auto CMD_TRANSFORM_MATRIX = 111; +- static constexpr auto CMD_TRANSFORM_PERSPECTIVE = 112; ++ if constexpr (StaticFeatureFlags::getFlag( ++ "ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS")) { ++ static const std::unordered_set synchronousProps = { ++ "opacity", ++ "elevation", ++ "zIndex", ++ // "shadowOpacity", // not supported on Android ++ // "shadowRadius", // not supported on Android ++ "backgroundColor", ++ // "color", // TODO: fix animating color of Animated.Text ++ "tintColor", ++ "borderRadius", ++ "borderTopLeftRadius", ++ "borderTopRightRadius", ++ "borderTopStartRadius", ++ "borderTopEndRadius", ++ "borderBottomLeftRadius", ++ "borderBottomRightRadius", ++ "borderBottomStartRadius", ++ "borderBottomEndRadius", ++ "borderStartStartRadius", ++ "borderStartEndRadius", ++ "borderEndStartRadius", ++ "borderEndEndRadius", ++ "borderColor", ++ "borderTopColor", ++ "borderBottomColor", ++ "borderLeftColor", ++ "borderRightColor", ++ "borderStartColor", ++ "borderEndColor", ++ "transform", ++ }; + +- static constexpr auto CMD_UNIT_DEG = 200; +- static constexpr auto CMD_UNIT_RAD = 201; +- static constexpr auto CMD_UNIT_PX = 202; +- static constexpr auto CMD_UNIT_PERCENT = 203; ++ // NOTE: Keep in sync with NativeProxy.java ++ static constexpr auto CMD_START_OF_VIEW = 1; ++ static constexpr auto CMD_START_OF_TRANSFORM = 2; ++ static constexpr auto CMD_END_OF_TRANSFORM = 3; ++ static constexpr auto CMD_END_OF_VIEW = 4; ++ ++ static constexpr auto CMD_OPACITY = 10; ++ static constexpr auto CMD_ELEVATION = 11; ++ static constexpr auto CMD_Z_INDEX = 12; ++ static constexpr auto CMD_SHADOW_OPACITY = 13; ++ static constexpr auto CMD_SHADOW_RADIUS = 14; ++ static constexpr auto CMD_BACKGROUND_COLOR = 15; ++ static constexpr auto CMD_COLOR = 16; ++ static constexpr auto CMD_TINT_COLOR = 17; ++ ++ static constexpr auto CMD_BORDER_RADIUS = 20; ++ static constexpr auto CMD_BORDER_TOP_LEFT_RADIUS = 21; ++ static constexpr auto CMD_BORDER_TOP_RIGHT_RADIUS = 22; ++ static constexpr auto CMD_BORDER_TOP_START_RADIUS = 23; ++ static constexpr auto CMD_BORDER_TOP_END_RADIUS = 24; ++ static constexpr auto CMD_BORDER_BOTTOM_LEFT_RADIUS = 25; ++ static constexpr auto CMD_BORDER_BOTTOM_RIGHT_RADIUS = 26; ++ static constexpr auto CMD_BORDER_BOTTOM_START_RADIUS = 27; ++ static constexpr auto CMD_BORDER_BOTTOM_END_RADIUS = 28; ++ static constexpr auto CMD_BORDER_START_START_RADIUS = 29; ++ static constexpr auto CMD_BORDER_START_END_RADIUS = 30; ++ static constexpr auto CMD_BORDER_END_START_RADIUS = 31; ++ static constexpr auto CMD_BORDER_END_END_RADIUS = 32; ++ ++ static constexpr auto CMD_BORDER_COLOR = 40; ++ static constexpr auto CMD_BORDER_TOP_COLOR = 41; ++ static constexpr auto CMD_BORDER_BOTTOM_COLOR = 42; ++ static constexpr auto CMD_BORDER_LEFT_COLOR = 43; ++ static constexpr auto CMD_BORDER_RIGHT_COLOR = 44; ++ static constexpr auto CMD_BORDER_START_COLOR = 45; ++ static constexpr auto CMD_BORDER_END_COLOR = 46; ++ ++ static constexpr auto CMD_TRANSFORM_TRANSLATE_X = 100; ++ static constexpr auto CMD_TRANSFORM_TRANSLATE_Y = 101; ++ static constexpr auto CMD_TRANSFORM_SCALE = 102; ++ static constexpr auto CMD_TRANSFORM_SCALE_X = 103; ++ static constexpr auto CMD_TRANSFORM_SCALE_Y = 104; ++ static constexpr auto CMD_TRANSFORM_ROTATE = 105; ++ static constexpr auto CMD_TRANSFORM_ROTATE_X = 106; ++ static constexpr auto CMD_TRANSFORM_ROTATE_Y = 107; ++ static constexpr auto CMD_TRANSFORM_ROTATE_Z = 108; ++ static constexpr auto CMD_TRANSFORM_SKEW_X = 109; ++ static constexpr auto CMD_TRANSFORM_SKEW_Y = 110; ++ static constexpr auto CMD_TRANSFORM_MATRIX = 111; ++ static constexpr auto CMD_TRANSFORM_PERSPECTIVE = 112; + +- const auto propNameToCommand = [](const std::string &name) { +- if (name == "opacity") +- return CMD_OPACITY; ++ static constexpr auto CMD_UNIT_DEG = 200; ++ static constexpr auto CMD_UNIT_RAD = 201; ++ static constexpr auto CMD_UNIT_PX = 202; ++ static constexpr auto CMD_UNIT_PERCENT = 203; + +- if (name == "elevation") +- return CMD_ELEVATION; ++ const auto propNameToCommand = [](const std::string &name) { ++ if (name == "opacity") ++ return CMD_OPACITY; + +- if (name == "zIndex") +- return CMD_Z_INDEX; ++ if (name == "elevation") ++ return CMD_ELEVATION; + +- if (name == "shadowOpacity") +- return CMD_SHADOW_OPACITY; ++ if (name == "zIndex") ++ return CMD_Z_INDEX; + +- if (name == "shadowRadius") +- return CMD_SHADOW_RADIUS; ++ if (name == "shadowOpacity") ++ return CMD_SHADOW_OPACITY; + +- if (name == "backgroundColor") +- return CMD_BACKGROUND_COLOR; ++ if (name == "shadowRadius") ++ return CMD_SHADOW_RADIUS; + +- if (name == "color") +- return CMD_COLOR; ++ if (name == "backgroundColor") ++ return CMD_BACKGROUND_COLOR; + +- if (name == "tintColor") +- return CMD_TINT_COLOR; ++ if (name == "color") ++ return CMD_COLOR; + +- if (name == "borderRadius") +- return CMD_BORDER_RADIUS; ++ if (name == "tintColor") ++ return CMD_TINT_COLOR; + +- if (name == "borderTopLeftRadius") +- return CMD_BORDER_TOP_LEFT_RADIUS; ++ if (name == "borderRadius") ++ return CMD_BORDER_RADIUS; + +- if (name == "borderTopRightRadius") +- return CMD_BORDER_TOP_RIGHT_RADIUS; ++ if (name == "borderTopLeftRadius") ++ return CMD_BORDER_TOP_LEFT_RADIUS; + +- if (name == "borderTopStartRadius") +- return CMD_BORDER_TOP_START_RADIUS; ++ if (name == "borderTopRightRadius") ++ return CMD_BORDER_TOP_RIGHT_RADIUS; + +- if (name == "borderTopEndRadius") +- return CMD_BORDER_TOP_END_RADIUS; ++ if (name == "borderTopStartRadius") ++ return CMD_BORDER_TOP_START_RADIUS; + +- if (name == "borderBottomLeftRadius") +- return CMD_BORDER_BOTTOM_LEFT_RADIUS; ++ if (name == "borderTopEndRadius") ++ return CMD_BORDER_TOP_END_RADIUS; + +- if (name == "borderBottomRightRadius") +- return CMD_BORDER_BOTTOM_RIGHT_RADIUS; +- +- if (name == "borderBottomStartRadius") +- return CMD_BORDER_BOTTOM_START_RADIUS; ++ if (name == "borderBottomLeftRadius") ++ return CMD_BORDER_BOTTOM_LEFT_RADIUS; + +- if (name == "borderBottomEndRadius") +- return CMD_BORDER_BOTTOM_END_RADIUS; ++ if (name == "borderBottomRightRadius") ++ return CMD_BORDER_BOTTOM_RIGHT_RADIUS; ++ ++ if (name == "borderBottomStartRadius") ++ return CMD_BORDER_BOTTOM_START_RADIUS; + +- if (name == "borderStartStartRadius") +- return CMD_BORDER_START_START_RADIUS; ++ if (name == "borderBottomEndRadius") ++ return CMD_BORDER_BOTTOM_END_RADIUS; + +- if (name == "borderStartEndRadius") +- return CMD_BORDER_START_END_RADIUS; ++ if (name == "borderStartStartRadius") ++ return CMD_BORDER_START_START_RADIUS; + +- if (name == "borderEndStartRadius") +- return CMD_BORDER_END_START_RADIUS; ++ if (name == "borderStartEndRadius") ++ return CMD_BORDER_START_END_RADIUS; + +- if (name == "borderEndEndRadius") +- return CMD_BORDER_END_END_RADIUS; ++ if (name == "borderEndStartRadius") ++ return CMD_BORDER_END_START_RADIUS; + +- if (name == "borderColor") +- return CMD_BORDER_COLOR; ++ if (name == "borderEndEndRadius") ++ return CMD_BORDER_END_END_RADIUS; + +- if (name == "borderTopColor") +- return CMD_BORDER_TOP_COLOR; ++ if (name == "borderColor") ++ return CMD_BORDER_COLOR; + +- if (name == "borderBottomColor") +- return CMD_BORDER_BOTTOM_COLOR; ++ if (name == "borderTopColor") ++ return CMD_BORDER_TOP_COLOR; + +- if (name == "borderLeftColor") +- return CMD_BORDER_LEFT_COLOR; ++ if (name == "borderBottomColor") ++ return CMD_BORDER_BOTTOM_COLOR; + +- if (name == "borderRightColor") +- return CMD_BORDER_RIGHT_COLOR; ++ if (name == "borderLeftColor") ++ return CMD_BORDER_LEFT_COLOR; + +- if (name == "borderStartColor") +- return CMD_BORDER_START_COLOR; ++ if (name == "borderRightColor") ++ return CMD_BORDER_RIGHT_COLOR; + +- if (name == "borderEndColor") +- return CMD_BORDER_END_COLOR; ++ if (name == "borderStartColor") ++ return CMD_BORDER_START_COLOR; + +- if (name == "transform") +- return CMD_START_OF_TRANSFORM; // TODO: use CMD_TRANSFORM? ++ if (name == "borderEndColor") ++ return CMD_BORDER_END_COLOR; + +- throw std::runtime_error("[Reanimated] Unsupported style: " + name); +- }; ++ if (name == "transform") ++ return CMD_START_OF_TRANSFORM; // TODO: use CMD_TRANSFORM? + +- const auto transformNameToCommand = [](const std::string &name) { +- if (name == "translateX") +- return CMD_TRANSFORM_TRANSLATE_X; ++ throw std::runtime_error("[Reanimated] Unsupported style: " + name); ++ }; + +- if (name == "translateY") +- return CMD_TRANSFORM_TRANSLATE_Y; ++ const auto transformNameToCommand = [](const std::string &name) { ++ if (name == "translateX") ++ return CMD_TRANSFORM_TRANSLATE_X; + +- if (name == "scale") +- return CMD_TRANSFORM_SCALE; ++ if (name == "translateY") ++ return CMD_TRANSFORM_TRANSLATE_Y; + +- if (name == "scaleX") +- return CMD_TRANSFORM_SCALE_X; ++ if (name == "scale") ++ return CMD_TRANSFORM_SCALE; + +- if (name == "scaleY") +- return CMD_TRANSFORM_SCALE_Y; ++ if (name == "scaleX") ++ return CMD_TRANSFORM_SCALE_X; + +- if (name == "rotate") +- return CMD_TRANSFORM_ROTATE; ++ if (name == "scaleY") ++ return CMD_TRANSFORM_SCALE_Y; + +- if (name == "rotateX") +- return CMD_TRANSFORM_ROTATE_X; ++ if (name == "rotate") ++ return CMD_TRANSFORM_ROTATE; + +- if (name == "rotateY") +- return CMD_TRANSFORM_ROTATE_Y; ++ if (name == "rotateX") ++ return CMD_TRANSFORM_ROTATE_X; + +- if (name == "rotateZ") +- return CMD_TRANSFORM_ROTATE_Z; ++ if (name == "rotateY") ++ return CMD_TRANSFORM_ROTATE_Y; + +- if (name == "skewX") +- return CMD_TRANSFORM_SKEW_X; ++ if (name == "rotateZ") ++ return CMD_TRANSFORM_ROTATE_Z; + +- if (name == "skewY") +- return CMD_TRANSFORM_SKEW_Y; ++ if (name == "skewX") ++ return CMD_TRANSFORM_SKEW_X; + +- if (name == "matrix") +- return CMD_TRANSFORM_MATRIX; ++ if (name == "skewY") ++ return CMD_TRANSFORM_SKEW_Y; + +- if (name == "perspective") +- return CMD_TRANSFORM_PERSPECTIVE; ++ if (name == "matrix") ++ return CMD_TRANSFORM_MATRIX; + +- throw std::runtime_error("[Reanimated] Unsupported transform: " + name); +- }; ++ if (name == "perspective") ++ return CMD_TRANSFORM_PERSPECTIVE; + +- auto [synchronousUpdatesBatch, shadowTreeUpdatesBatch] = partitionUpdates( +- updatesBatch, synchronousProps, true, allowPartialUpdates); +- +- if (!synchronousUpdatesBatch.empty()) { +- std::vector intBuffer; +- std::vector doubleBuffer; +- intBuffer.reserve(1024); +- doubleBuffer.reserve(1024); +- +- for (const auto &[shadowNode, props] : synchronousUpdatesBatch) { +- intBuffer.push_back(CMD_START_OF_VIEW); +- intBuffer.push_back(shadowNode->getTag()); +- for (const auto &[key, value] : props.items()) { +- const auto command = propNameToCommand(key.getString()); +- switch (command) { +- case CMD_OPACITY: +- case CMD_ELEVATION: +- case CMD_Z_INDEX: +- case CMD_SHADOW_OPACITY: +- case CMD_SHADOW_RADIUS: +- intBuffer.push_back(command); +- doubleBuffer.push_back(value.asDouble()); +- break; ++ throw std::runtime_error("[Reanimated] Unsupported transform: " + name); ++ }; + +- case CMD_BACKGROUND_COLOR: +- case CMD_COLOR: +- case CMD_TINT_COLOR: +- case CMD_BORDER_COLOR: +- case CMD_BORDER_TOP_COLOR: +- case CMD_BORDER_BOTTOM_COLOR: +- case CMD_BORDER_LEFT_COLOR: +- case CMD_BORDER_RIGHT_COLOR: +- case CMD_BORDER_START_COLOR: +- case CMD_BORDER_END_COLOR: +- intBuffer.push_back(command); +- intBuffer.push_back(value.asInt()); +- break; ++ UpdatesBatch synchronousUpdatesBatch, shadowTreeUpdatesBatch; + +- case CMD_BORDER_RADIUS: +- case CMD_BORDER_TOP_LEFT_RADIUS: +- case CMD_BORDER_TOP_RIGHT_RADIUS: +- case CMD_BORDER_TOP_START_RADIUS: +- case CMD_BORDER_TOP_END_RADIUS: +- case CMD_BORDER_BOTTOM_LEFT_RADIUS: +- case CMD_BORDER_BOTTOM_RIGHT_RADIUS: +- case CMD_BORDER_BOTTOM_START_RADIUS: +- case CMD_BORDER_BOTTOM_END_RADIUS: +- case CMD_BORDER_START_START_RADIUS: +- case CMD_BORDER_START_END_RADIUS: +- case CMD_BORDER_END_START_RADIUS: +- case CMD_BORDER_END_END_RADIUS: +- intBuffer.push_back(command); +- if (value.isDouble()) { +- intBuffer.push_back(CMD_UNIT_PX); +- doubleBuffer.push_back(value.getDouble()); +- } else if (value.isString()) { +- const auto &valueStr = value.getString(); +- if (!valueStr.ends_with("%")) { +- throw std::runtime_error( +- "[Reanimated] Border radius string must be a percentage"); +- } +- intBuffer.push_back(CMD_UNIT_PERCENT); +- doubleBuffer.push_back(std::stof(valueStr.substr(0, -1))); +- } else { +- throw std::runtime_error( +- "[Reanimated] Border radius value must be either a number or a string"); +- } ++ for (const auto &[shadowNode, props] : updatesBatch) { ++ bool hasOnlySynchronousProps = true; ++ for (const auto &key : props.keys()) { ++ const auto keyStr = key.asString(); ++ if (!synchronousProps.contains(keyStr)) { ++ hasOnlySynchronousProps = false; + break; ++ } ++ } ++ if (hasOnlySynchronousProps) { ++ synchronousUpdatesBatch.emplace_back(shadowNode, props); ++ } else { ++ shadowTreeUpdatesBatch.emplace_back(shadowNode, props); ++ } ++ } + +- case CMD_START_OF_TRANSFORM: +- intBuffer.push_back(command); +- react_native_assert( +- value.isArray() && +- "[Reanimated] Transform value must be an array"); +- for (const auto &item : value) { +- react_native_assert( +- item.isObject() && +- "[Reanimated] Transform array item must be an object"); +- react_native_assert( +- item.size() == 1 && +- "[Reanimated] Transform array item must have exactly one key-value pair"); +- const auto transformCommand = +- transformNameToCommand(item.keys().begin()->getString()); +- const auto &transformValue = *item.values().begin(); +- switch (transformCommand) { +- case CMD_TRANSFORM_SCALE: +- case CMD_TRANSFORM_SCALE_X: +- case CMD_TRANSFORM_SCALE_Y: +- case CMD_TRANSFORM_PERSPECTIVE: { +- intBuffer.push_back(transformCommand); +- doubleBuffer.push_back(transformValue.asDouble()); +- break; +- } +- case CMD_TRANSFORM_TRANSLATE_X: +- case CMD_TRANSFORM_TRANSLATE_Y: { +- intBuffer.push_back(transformCommand); +- if (transformValue.isDouble()) { +- intBuffer.push_back(CMD_UNIT_PX); +- doubleBuffer.push_back(transformValue.getDouble()); +- } else if (transformValue.isString()) { +- const auto &transformValueStr = transformValue.getString(); +- if (!transformValueStr.ends_with("%")) { +- throw std::runtime_error( +- "[Reanimated] String translate must be a percentage"); +- } +- intBuffer.push_back(CMD_UNIT_PERCENT); +- doubleBuffer.push_back( +- std::stof(transformValueStr.substr(0, -1))); +- } else { ++ if (!synchronousUpdatesBatch.empty()) { ++ std::vector intBuffer; ++ std::vector doubleBuffer; ++ intBuffer.reserve(1024); ++ doubleBuffer.reserve(1024); ++ ++ for (const auto &[shadowNode, props] : synchronousUpdatesBatch) { ++ intBuffer.push_back(CMD_START_OF_VIEW); ++ intBuffer.push_back(shadowNode->getTag()); ++ for (const auto &[key, value] : props.items()) { ++ const auto command = propNameToCommand(key.getString()); ++ switch (command) { ++ case CMD_OPACITY: ++ case CMD_ELEVATION: ++ case CMD_Z_INDEX: ++ case CMD_SHADOW_OPACITY: ++ case CMD_SHADOW_RADIUS: ++ intBuffer.push_back(command); ++ doubleBuffer.push_back(value.asDouble()); ++ break; ++ ++ case CMD_BACKGROUND_COLOR: ++ case CMD_COLOR: ++ case CMD_TINT_COLOR: ++ case CMD_BORDER_COLOR: ++ case CMD_BORDER_TOP_COLOR: ++ case CMD_BORDER_BOTTOM_COLOR: ++ case CMD_BORDER_LEFT_COLOR: ++ case CMD_BORDER_RIGHT_COLOR: ++ case CMD_BORDER_START_COLOR: ++ case CMD_BORDER_END_COLOR: ++ intBuffer.push_back(command); ++ intBuffer.push_back(value.asInt()); ++ break; ++ ++ case CMD_BORDER_RADIUS: ++ case CMD_BORDER_TOP_LEFT_RADIUS: ++ case CMD_BORDER_TOP_RIGHT_RADIUS: ++ case CMD_BORDER_TOP_START_RADIUS: ++ case CMD_BORDER_TOP_END_RADIUS: ++ case CMD_BORDER_BOTTOM_LEFT_RADIUS: ++ case CMD_BORDER_BOTTOM_RIGHT_RADIUS: ++ case CMD_BORDER_BOTTOM_START_RADIUS: ++ case CMD_BORDER_BOTTOM_END_RADIUS: ++ case CMD_BORDER_START_START_RADIUS: ++ case CMD_BORDER_START_END_RADIUS: ++ case CMD_BORDER_END_START_RADIUS: ++ case CMD_BORDER_END_END_RADIUS: ++ intBuffer.push_back(command); ++ if (value.isDouble()) { ++ intBuffer.push_back(CMD_UNIT_PX); ++ doubleBuffer.push_back(value.getDouble()); ++ } else if (value.isString()) { ++ const auto &valueStr = value.getString(); ++ if (!valueStr.ends_with("%")) { + throw std::runtime_error( +- "[Reanimated] Translate value must be either a number or a string"); ++ "[Reanimated] Border radius string must be a percentage"); + } +- break; ++ intBuffer.push_back(CMD_UNIT_PERCENT); ++ doubleBuffer.push_back(std::stof(valueStr.substr(0, -1))); ++ } else { ++ throw std::runtime_error( ++ "[Reanimated] Border radius value must be either a number or a string"); + } +- case CMD_TRANSFORM_ROTATE: +- case CMD_TRANSFORM_ROTATE_X: +- case CMD_TRANSFORM_ROTATE_Y: +- case CMD_TRANSFORM_ROTATE_Z: +- case CMD_TRANSFORM_SKEW_X: +- case CMD_TRANSFORM_SKEW_Y: { +- const auto &transformValueStr = transformValue.getString(); +- intBuffer.push_back(transformCommand); +- if (transformValueStr.ends_with("deg")) { +- intBuffer.push_back(CMD_UNIT_DEG); +- } else if (transformValueStr.ends_with("rad")) { +- intBuffer.push_back(CMD_UNIT_RAD); +- } else { +- throw std::runtime_error( +- "[Reanimated] Unsupported rotation unit: " + +- transformValueStr); +- } +- doubleBuffer.push_back( +- std::stof(transformValueStr.substr(0, -3))); +- break; +- } +- case CMD_TRANSFORM_MATRIX: { +- intBuffer.push_back(transformCommand); ++ break; ++ ++ case CMD_START_OF_TRANSFORM: ++ intBuffer.push_back(command); ++ react_native_assert( ++ value.isArray() && ++ "[Reanimated] Transform value must be an array"); ++ for (const auto &item : value) { ++ react_native_assert( ++ item.isObject() && ++ "[Reanimated] Transform array item must be an object"); + react_native_assert( +- transformValue.isArray() && +- "[Reanimated] Matrix must be an array"); +- int size = transformValue.size(); +- intBuffer.push_back(size); +- for (int i = 0; i < size; i++) { +- doubleBuffer.push_back(transformValue[i].asDouble()); ++ item.size() == 1 && ++ "[Reanimated] Transform array item must have exactly one key-value pair"); ++ const auto transformCommand = ++ transformNameToCommand(item.keys().begin()->getString()); ++ const auto &transformValue = *item.values().begin(); ++ switch (transformCommand) { ++ case CMD_TRANSFORM_SCALE: ++ case CMD_TRANSFORM_SCALE_X: ++ case CMD_TRANSFORM_SCALE_Y: ++ case CMD_TRANSFORM_PERSPECTIVE: { ++ intBuffer.push_back(transformCommand); ++ doubleBuffer.push_back(transformValue.asDouble()); ++ break; ++ } ++ ++ case CMD_TRANSFORM_TRANSLATE_X: ++ case CMD_TRANSFORM_TRANSLATE_Y: { ++ intBuffer.push_back(transformCommand); ++ if (transformValue.isDouble()) { ++ intBuffer.push_back(CMD_UNIT_PX); ++ doubleBuffer.push_back(transformValue.getDouble()); ++ } else if (transformValue.isString()) { ++ const auto &transformValueStr = ++ transformValue.getString(); ++ if (!transformValueStr.ends_with("%")) { ++ throw std::runtime_error( ++ "[Reanimated] String translate must be a percentage"); ++ } ++ intBuffer.push_back(CMD_UNIT_PERCENT); ++ doubleBuffer.push_back( ++ std::stof(transformValueStr.substr(0, -1))); ++ } else { ++ throw std::runtime_error( ++ "[Reanimated] Translate value must be either a number or a string"); ++ } ++ break; ++ } ++ ++ case CMD_TRANSFORM_ROTATE: ++ case CMD_TRANSFORM_ROTATE_X: ++ case CMD_TRANSFORM_ROTATE_Y: ++ case CMD_TRANSFORM_ROTATE_Z: ++ case CMD_TRANSFORM_SKEW_X: ++ case CMD_TRANSFORM_SKEW_Y: { ++ const auto &transformValueStr = ++ transformValue.getString(); ++ intBuffer.push_back(transformCommand); ++ if (transformValueStr.ends_with("deg")) { ++ intBuffer.push_back(CMD_UNIT_DEG); ++ } else if (transformValueStr.ends_with("rad")) { ++ intBuffer.push_back(CMD_UNIT_RAD); ++ } else { ++ throw std::runtime_error( ++ "[Reanimated] Unsupported rotation unit: " + ++ transformValueStr); ++ } ++ doubleBuffer.push_back( ++ std::stof(transformValueStr.substr(0, -3))); ++ break; ++ } ++ ++ case CMD_TRANSFORM_MATRIX: { ++ intBuffer.push_back(transformCommand); ++ react_native_assert( ++ transformValue.isArray() && ++ "[Reanimated] Matrix must be an array"); ++ int size = transformValue.size(); ++ intBuffer.push_back(size); ++ for (int i = 0; i < size; i++) { ++ doubleBuffer.push_back(transformValue[i].asDouble()); ++ } ++ break; ++ } + } +- break; + } +- } ++ intBuffer.push_back(CMD_END_OF_TRANSFORM); ++ break; + } +- intBuffer.push_back(CMD_END_OF_TRANSFORM); +- break; ++ } ++ intBuffer.push_back(CMD_END_OF_VIEW); + } ++ synchronouslyUpdateUIPropsFunction_(intBuffer, doubleBuffer); + } +- intBuffer.push_back(CMD_END_OF_VIEW); ++ ++ updatesBatch = std::move(shadowTreeUpdatesBatch); ++ } ++#endif // ANDROID ++ ++ if ((updatesBatch.size() > 0) && ++ updatesRegistryManager_->shouldReanimatedSkipCommit()) { ++ updatesRegistryManager_->pleaseCommitAfterPause(); + } +- synchronouslyUpdateUIPropsFunction_(intBuffer, doubleBuffer); + } + +- updatesBatch = std::move(shadowTreeUpdatesBatch); +-#endif // ANDROID ++ if (updatesRegistryManager_->shouldReanimatedSkipCommit()) { ++ // It may happen that `performOperations` is called on the UI thread ++ // while React Native tries to commit a new tree on the JS thread. ++ // In this case, we should skip the commit here and let React Native do ++ // it. The commit will include the current values from the updates manager ++ // which will be applied in ReanimatedCommitHook. ++ return; ++ } ++ ++ commitUpdates(rt, updatesBatch); ++ ++ // Clear the entire cache after the commit ++ // (we don't know if the view is updated from outside of Reanimated ++ // so we have to clear the entire cache) ++ viewStylesRepository_->clearNodesCache(); + } + + void ReanimatedModuleProxy::requestFlushRegistry() { +diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h +index 4d86766..9e0599a 100644 +--- a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h ++++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h +@@ -118,7 +118,6 @@ class ReanimatedModuleProxy + double getCssTimestamp(); + + void performOperations(); +- void performNonLayoutOperations(); + + void setViewStyle( + jsi::Runtime &rt, +@@ -219,9 +218,6 @@ class ReanimatedModuleProxy + + private: + void commitUpdates(jsi::Runtime &rt, const UpdatesBatch &updatesBatch); +- void applySynchronousUpdates( +- UpdatesBatch &updatesBatch, +- bool allowPartialUpdates = false); + + const bool isReducedMotion_; + bool shouldFlushRegistry_ = false; +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cache-v2-5efab75bf981d8230c60.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cache-v2-5efab75bf981d8230c60.json +new file mode 100644 +index 0000000..c657672 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cache-v2-5efab75bf981d8230c60.json +@@ -0,0 +1,1479 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "ANDROID_TOOLCHAIN", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "clang" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "Reanimated" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "IS_REANIMATED_EXAMPLE_APP", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "REACT_NATIVE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native" ++ }, ++ { ++ "name" : "REACT_NATIVE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "81" ++ }, ++ { ++ "name" : "REACT_NATIVE_WORKLETS_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets" ++ }, ++ { ++ "name" : "REANIMATED_FEATURE_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" ++ }, ++ { ++ "name" : "REANIMATED_PROFILING", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "REANIMATED_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "4.1.6" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "Reanimated_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a" ++ }, ++ { ++ "name" : "Reanimated_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "Reanimated_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" ++ }, ++ { ++ "name" : "fbjni_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for fbjni." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni" ++ }, ++ { ++ "name" : "reanimated_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;android;general;worklets;general;ReactAndroid::reactnative;" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-5bad77d5d4eac1fa18fb.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-5bad77d5d4eac1fa18fb.json +new file mode 100644 +index 0000000..577b946 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-5bad77d5d4eac1fa18fb.json +@@ -0,0 +1,208 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "source" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-7a94a7ddcedb55cd4984.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-7a94a7ddcedb55cd4984.json +new file mode 100644 +index 0000000..12c11ed +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-7a94a7ddcedb55cd4984.json +@@ -0,0 +1,60 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.13" ++ }, ++ "projectIndex" : 0, ++ "source" : ".", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0 ++ ], ++ "name" : "Reanimated", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "reanimated::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-reanimated-Debug-553bfda4a1218952d721.json", ++ "name" : "reanimated", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "source" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/index-2026-06-08T20-46-56-0047.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/index-2026-06-08T20-46-56-0047.json +new file mode 100644 +index 0000000..b1b0143 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/index-2026-06-08T20-46-56-0047.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-7a94a7ddcedb55cd4984.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-5efab75bf981d8230c60.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-5bad77d5d4eac1fa18fb.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-5efab75bf981d8230c60.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-5bad77d5d4eac1fa18fb.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-7a94a7ddcedb55cd4984.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/target-reanimated-Debug-553bfda4a1218952d721.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/target-reanimated-Debug-553bfda4a1218952d721.json +new file mode 100644 +index 0000000..22c3864 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/target-reanimated-Debug-553bfda4a1218952d721.json +@@ -0,0 +1,877 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "add_compile_options", ++ "target_compile_options", ++ "target_compile_reactnative_options", ++ "target_compile_definitions", ++ "target_include_directories" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt", ++ "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 48, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 95, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 99, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 12, ++ "parent" : 0 ++ }, ++ { ++ "command" : 4, ++ "file" : 0, ++ "line" : 54, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 1, ++ "line" : 30, ++ "parent" : 5 ++ }, ++ { ++ "command" : 5, ++ "file" : 1, ++ "line" : 33, ++ "parent" : 5 ++ }, ++ { ++ "command" : 6, ++ "file" : 0, ++ "line" : 60, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_NO_CONFIG=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_USE_LIBCPP=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_MOBILE=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-Wall" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-Werror" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-fexceptions" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-frtti" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-std=c++20" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-DLOG_TAG=\\\"ReactNative\\\"" ++ }, ++ { ++ "fragment" : "-std=gnu++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "backtrace" : 7, ++ "define" : "RN_SERIALIZABLE_STATE" ++ }, ++ { ++ "define" : "reanimated_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" ++ }, ++ { ++ "backtrace" : 3, ++ "isSystem" : true, ++ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 1 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14, ++ 15, ++ 16, ++ 17, ++ 18, ++ 19, ++ 20, ++ 21, ++ 22, ++ 23, ++ 24, ++ 25, ++ 26, ++ 27, ++ 28, ++ 29, ++ 30, ++ 31, ++ 32, ++ 33, ++ 34, ++ 35, ++ 36, ++ 37, ++ 38, ++ 39, ++ 40, ++ 41, ++ 42, ++ 43, ++ 44, ++ 45, ++ 46, ++ 47, ++ 48, ++ 49, ++ 50, ++ 51, ++ 52, ++ 53, ++ 54, ++ 55, ++ 56, ++ 57, ++ 58, ++ 59, ++ 60, ++ 61, ++ 62, ++ 63, ++ 64, ++ 65, ++ 66, ++ 67, ++ 68, ++ 69, ++ 70 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "reanimated::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-llog", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-landroid", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "reanimated", ++ "nameOnDisk" : "libreanimated.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14, ++ 15, ++ 16, ++ 17, ++ 18, ++ 19, ++ 20, ++ 21, ++ 22, ++ 23, ++ 24, ++ 25, ++ 26, ++ 27, ++ 28, ++ 29, ++ 30, ++ 31, ++ 32, ++ 33, ++ 34, ++ 35, ++ 36, ++ 37, ++ 38, ++ 39, ++ 40, ++ 41, ++ 42, ++ 43, ++ 44, ++ 45, ++ 46, ++ 47, ++ 48, ++ 49, ++ 50, ++ 51, ++ 52, ++ 53, ++ 54, ++ 55, ++ 56, ++ 57, ++ 58, ++ 59, ++ 60, ++ 61, ++ 62, ++ 63, ++ 64, ++ 65, ++ 66, ++ 67, ++ 68, ++ 69, ++ 70 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/OnLoad.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_deps b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_deps +new file mode 100644 +index 0000000..2eca6b8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_deps differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_log b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_log +new file mode 100644 +index 0000000..5c9c84c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_log +@@ -0,0 +1,147 @@ ++# ninja log v5 ++0 66 0 /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs b3f027c1a1bba3d8 ++38 5727 1769779148342970831 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o 2c4891a445ddbba3 ++35 22825 1769779165406130615 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o b609325169522d69 ++33 13147 1769779155732160897 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o 793b479a5560cddc ++18526 52478 1769779194942682076 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o 963289a887de8960 ++6354 29761 1769779172337314833 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o 72052bb2ae711531 ++6035 29967 1769779172562126267 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o e7f8dd84beb010bf ++101415 114658 1769779257226660158 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o f047cd5b534f089d ++29 6035 1769779148673003515 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o cea584cdc8ede381 ++138616 153718 1769779296340641855 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o 1ef018cc8120bf72 ++33207 44712 1769779187276863838 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o 43d29c93237eca42 ++36 21421 1769779163998216181 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o b910ec984c4e0b3a ++112329 138969 1769779281529163096 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o 127c354e400e0393 ++45631 71993 1769779214520217203 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o 3e041bbe7e5c4490 ++44 21539 1769779164148802246 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o 308fa401deace011 ++45165 78835 1769779221335743173 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o fde7ed7094576215 ++22826 33206 1769779175839472786 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o a3e7657d25700da9 ++29028 36325 1769779178965744280 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o e74411028198584d ++71993 101415 1769779243986004529 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o 4ad109d4200e10b7 ++42 36111 1769779178551699234 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o bee7a05881b90843 ++29761 55974 1769779198577338867 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o 7cf5808bf644448 ++128331 152370 1769779294803916328 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o 315694dfff4692c4 ++44713 53495 1769779196102102288 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o 7055ea42f2f639ed ++67065 98372 1769779240920729860 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o 4f2c73ec131842f5 ++132463 165032 1769779307516804422 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o 95b8349aea7a56b6 ++40 6353 1769779148976903424 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o a0dc35a7b81db374 ++138969 175475 1769779317959961585 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o 52c72f63c548ad34 ++53496 85495 1769779227928098614 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o dbb462eee517196b ++100277 128331 1769779270807689666 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o 82aeed7fbf7553f6 ++78835 105953 1769779248561041685 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o d2360996e6c54329 ++138643 143008 1769779285643737952 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o 502071d4546dba5f ++36111 45165 1769779187772777941 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o e50af84c5eda6798 ++31 67065 1769779208874166757 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o 6b120a940e295b60 ++29967 60556 1769779203012626405 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o abb276eee84aeae3 ++21422 72520 1769779214760406018 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o fa2e524ae0d67988 ++49212 77489 1769779220032799598 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o 4bf64f5c01bbaa05 ++28 18525 1769779161097090392 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o 4b08dcc218e6d4e6 ++52479 84252 1769779226679438771 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o 1b5f85a5da056efd ++55974 90271 1769779232725249594 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o ad7a664c62b5b9c6 ++175476 176511 1769779318950184755 ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so 3a9d6d2d387cb734 ++107617 111525 1769779254154660428 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o f433aa94e318f299 ++105954 129794 1769779272365719182 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o 6124a7c2f5e1848 ++114658 138643 1769779281251441397 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o 446778397400854d ++60561 100277 1769779242772896815 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o bb95e4af8fb1b7d6 ++13149 36467 1769779179101455982 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o dce4d266533efc6d ++98373 132462 1769779274889080266 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o 6a0a700524268d92 ++93681 114077 1769779256656452615 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o 13a92467f6cd0264 ++90272 93681 1769779236308673299 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o 9f0f60546abfa7ce ++67272 103047 1769779245570981265 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o c3870ed2c8d51f86 ++36325 45631 1769779188272473249 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o 6b7c69cd016d6f2d ++146199 152078 1769779294709888052 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o 9709c02452c8c53d ++84252 109043 1769779251585780735 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o d0278eef009c8bc4 ++109043 133821 1769779276437011360 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o 6aa38a97f6078160 ++143008 158146 1769779300744375123 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o 24401da0079acee8 ++103047 122949 1769779265550216402 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o 723dc2837e32327 ++100244 122331 1769779264900845028 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o fc72dcf7f588d961 ++141205 161849 1769779304449396952 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o befa52d991bbc505 ++77489 112329 1769779254840146034 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o 393f16726128ff9c ++122950 149013 1769779291572820299 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o 2118f0be2a9f05d5 ++85495 107616 1769779250251234562 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o 5bc41a45aae9cfca ++72520 100244 1769779242844552354 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o ee8c43d97bfa919e ++111525 120761 1769779263347531123 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o 73129a77d6be1af5 ++122331 146199 1769779288769051243 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o 5871c38bcd24fc54 ++21539 49212 1769779191746121679 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o 9ed4b5ec3bc4163f ++5727 29028 1769779171648878635 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o fe4717655bf3416f ++129794 138615 1769779281225715264 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o 2092aaed5cb55df0 ++120762 141757 1769779284368804327 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o 82970c11c70ef85a ++133822 150134 1769779292727633195 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o bcfae75a8e1994f5 ++141757 150152 1769779292779895896 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o 335a707f6e29cc94 ++114077 141205 1769779283772957081 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o b122519d6fefdf91 ++36467 67272 1769779209759062913 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o 2e7d3de737ca40b5 ++150134 167810 1769779310432316627 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o 1d421601dd54f235 ++149013 172630 1769779315196686342 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o f3cfbd69a0e59893 ++1 189 0 /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs b3f027c1a1bba3d8 ++79 6465 1780951857087782377 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o 773c3c512999867f ++71 6826 1780951857454014948 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o eed44188fca53e7b ++83 7092 1780951857719227616 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o 79f3127067d60fdc ++69 13602 1780951864215471771 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o 69cb5ca06fdbdbc3 ++66 19028 1780951869515208367 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o 4f1340d5bc528701 ++75 22575 1780951873159938877 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o 4f37475eb3783bac ++131 22672 1780951873237246621 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o e57c79eb4cef3c5b ++73 24001 1780951874563382769 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o 9dc701c6c359c4a5 ++6466 30624 1780951881205222768 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o d5e08f422a350148 ++7092 31386 1780951881940998305 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o 518a5ee5dcd7801c ++6826 31673 1780951882238176486 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o 330bce627e169a6c ++24002 35304 1780951885876189129 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o f78bc280f8077476 ++87 37368 1780951887825731856 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o db6adbbf804a5a69 ++30624 37914 1780951888517370037 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o 98ee2f8c3645fe2 ++13605 38032 1780951888586088689 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o 912047f4c3b55a21 ++37369 45091 1780951895657330989 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o 3b0514b134edbb7e ++35304 45289 1780951895860324834 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o f3a94ebdf412bd4a ++37914 46078 1780951896636921395 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o f96a485499ae4150 ++22672 49351 1780951899904419454 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o 959fb0d397aed62a ++19028 52897 1780951903350313062 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o f037d6dfed406447 ++45091 54274 1780951904873182891 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o 4b29657e8afa25d ++31387 57309 1780951907847535869 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o 5efbacf70b0d4a33 ++31673 65034 1780951915402861092 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o c93aa042106059 ++67 70170 1780951919832517280 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o a6510cfdbc8b722f ++38033 74070 1780951924502954458 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o b1f2d7169da59fee ++22576 78723 1780951928766839548 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o 5d77ec627655073d ++46078 80570 1780951931010320823 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o 23fdf27fb3ba8977 ++74070 83615 1780951934210560268 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o a9054be074aba942 ++49352 86717 1780951937305884086 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o b71db91fdd143320 ++45289 87979 1780951938346619418 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o ffb44a1e48a6c220 ++52898 92966 1780951943444401600 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o bd52db288ac9e847 ++54274 94109 1780951944603865073 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o 95e97b4eb361e547 ++57309 97460 1780951947954244679 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o b2ccbe3bf4f4b5b1 ++97462 99729 1780951950358018771 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o b3b8acc09b466d57 ++70171 103127 1780951953604829567 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o 4729cab9d97a0cbd ++65036 107123 1780951957563865477 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o 49fb722b6ca55ab4 ++80570 109357 1780951959881376910 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o 37c928d47a2f7dbc ++83615 109811 1780951960335074697 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o b18c12905ac80e71 ++78725 115677 1780951966172436643 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o 9b272c2a30844482 ++87980 116608 1780951967199215523 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o e2d4bbad2b9c9511 ++94109 119180 1780951969749876559 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o 5b82594969acb0e4 ++92968 120759 1780951971303560306 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o c90b4f73aabe182e ++119180 125135 1780951975759051641 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o 9d40ece1b913348a ++86718 125197 1780951975594886965 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o 3bf24118725c1d34 ++99730 127223 1780951977745058474 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o 2651b9b313d4c937 ++109813 129652 1780951980254227906 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o 3dab52724e9848d1 ++125135 133657 1780951984266575003 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o 7ae5932d2d23d990 ++107126 135097 1780951985650923711 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o 1fe1484f36bfe31b ++115679 138882 1780951989487701190 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o 787d86a8e0331357 ++116609 141285 1780951991853130052 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o 5f201eae45f567f9 ++109357 142108 1780951992599501292 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o 69e8a9d8ddd67517 ++103128 143462 1780951993909167362 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o 52dd7177007d85a1 ++138883 151417 1780952002030592193 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o 73e1c2de5dc1bc61 ++120760 153920 1780952004357897669 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o 71eee0acfd4a309 ++125198 173433 1780952023910946270 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o a9127db978fc03bb ++129656 174390 1780952024958519041 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o 7cf2836c3c5837a ++153921 178786 1780952029391481497 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o 4b0afe12c8beef95 ++127223 179940 1780952030378199014 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o 6a3badf262f03634 ++133658 188994 1780952039416242540 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o 6ce91839f29fff47 ++142108 193631 1780952044163995300 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o 86f172491b17d06e ++179942 201332 1780952051840988114 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o 7ebb2862c522a2f5 ++143462 207759 1780952058134331873 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o 7115fffcb42ef6e2 ++141286 208687 1780952059147687280 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o 4661f91cbf82f32f ++151418 212561 1780952062906072191 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o a27cafa10f6adf49 ++174392 212646 1780952063221794356 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o 823177f40d47c582 ++178787 215302 1780952065812438988 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o 196a52fe59080f58 ++135098 222075 1780952072453033328 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o 646f24a80709822c ++201334 232790 1780952083165143562 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o 1339e9f75adef3f0 ++193632 240880 1780952091400607480 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o c1f92f22cadf96ba ++173445 248383 1780952098749890356 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o a14d4e2dc700916e ++188995 282294 1780952132693888870 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o d1d0a8b50412e74d ++282297 285042 1780952134504246492 ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so 1dd0179d40bf9775 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeCache.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeCache.txt +new file mode 100644 +index 0000000..4123dac +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeCache.txt +@@ -0,0 +1,437 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a ++# It was generated by CMake: /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++ANDROID_TOOLCHAIN:UNINITIALIZED=clang ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=Reanimated ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//No help, variable specified on the command line. ++CMAKE_TOOLCHAIN_FILE:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++IS_REANIMATED_EXAMPLE_APP:UNINITIALIZED=false ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_DIR:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=81 ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_WORKLETS_DIR:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-worklets ++ ++//No help, variable specified on the command line. ++REANIMATED_FEATURE_FLAGS:UNINITIALIZED=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] ++ ++//No help, variable specified on the command line. ++REANIMATED_PROFILING:UNINITIALIZED=false ++ ++//No help, variable specified on the command line. ++REANIMATED_VERSION:UNINITIALIZED=4.1.6 ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++Reanimated_BINARY_DIR:STATIC=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a ++ ++//Value Computed by CMake ++Reanimated_IS_TOP_LEVEL:STATIC=ON ++ ++//Value Computed by CMake ++Reanimated_SOURCE_DIR:STATIC=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android ++ ++//The directory containing a CMake configuration file for fbjni. ++fbjni_DIR:PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni ++ ++//Dependencies for the target ++reanimated_LIB_DEPENDS:STATIC=general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;android;general;worklets;general;ReactAndroid::reactnative; ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..b8250ac +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "18.0.2") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..11d14e7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "18.0.2") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..7473130 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..a6f3e55 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..7dc43fc +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-25.2.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "25.2.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") ++ ++include("/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "aarch64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..63698c1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..4da9f9b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeOutput.log b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..732e81a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,264 @@ ++The target system is: Android - 1 - aarch64 ++The host system is: Darwin - 25.2.0 - x86_64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_11ed7 && [1/2] Building C object CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o -x c /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0 ++ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_11ed7 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_11ed7 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_11ed7 && [1/2] Building C object CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o -x c /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0] ++ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_11ed7] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_11ed7 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_11ed7] ==> ignore ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_fd173 && [1/2] Building CXX object CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0 ++ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_fd173 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_fd173 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_fd173 && [1/2] Building CXX object CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0] ++ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_fd173] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_fd173 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_fd173] ==> ignore ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..cbcf9a0 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/edit_cache.dir ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake +new file mode 100644 +index 0000000..12d4d75 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake +@@ -0,0 +1,92 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by CMake Version 3.22 ++cmake_policy(SET CMP0009 NEW) ++ ++# REANIMATED_COMMON_CPP_SOURCES at CMakeLists.txt:40 (file) ++file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/*.cpp") ++set(OLD_GLOB ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/common.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/core/CSSTransition.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/linear.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/steps.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/algorithms.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/interpolators.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/keyframes.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/props.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Tools/FeatureFlags.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs") ++endif() ++ ++# REANIMATED_ANDROID_CPP_SOURCES at CMakeLists.txt:42 (file) ++file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/*.cpp") ++set(OLD_GLOB ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs") ++endif() +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.check_cache b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs +new file mode 100644 +index 0000000..2b38fac +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs +@@ -0,0 +1 @@ ++# This file is generated by CMake for checking of the VerifyGlobs.cmake file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o +new file mode 100644 +index 0000000..37093a2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o +new file mode 100644 +index 0000000..3e5392f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o +new file mode 100644 +index 0000000..0bdc746 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o +new file mode 100644 +index 0000000..92bb5ec +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o +new file mode 100644 +index 0000000..4077734 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o +new file mode 100644 +index 0000000..1c0430d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o +new file mode 100644 +index 0000000..b97b7c1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o +new file mode 100644 +index 0000000..f663fd3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o +new file mode 100644 +index 0000000..af5d4ea +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o +new file mode 100644 +index 0000000..c660990 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o +new file mode 100644 +index 0000000..834b692 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o +new file mode 100644 +index 0000000..c0a9212 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o +new file mode 100644 +index 0000000..f7a0f35 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o +new file mode 100644 +index 0000000..f76e989 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o +new file mode 100644 +index 0000000..a5ce288 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o +new file mode 100644 +index 0000000..2931bce +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o +new file mode 100644 +index 0000000..9fa60c3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o +new file mode 100644 +index 0000000..a98c18b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o +new file mode 100644 +index 0000000..56c0bc9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o +new file mode 100644 +index 0000000..c9809bc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o +new file mode 100644 +index 0000000..43ece93 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o +new file mode 100644 +index 0000000..c486b2a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o +new file mode 100644 +index 0000000..76014fa +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o +new file mode 100644 +index 0000000..0e8ea4d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o +new file mode 100644 +index 0000000..eb75a73 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o +new file mode 100644 +index 0000000..5e2fe2e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o +new file mode 100644 +index 0000000..d2532a9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o +new file mode 100644 +index 0000000..bfb1871 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o +new file mode 100644 +index 0000000..1264709 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o +new file mode 100644 +index 0000000..8abaa34 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o +new file mode 100644 +index 0000000..eea8fea +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o +new file mode 100644 +index 0000000..52c4f39 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o +new file mode 100644 +index 0000000..6cad43c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o +new file mode 100644 +index 0000000..f987f99 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o +new file mode 100644 +index 0000000..ca56eed +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o +new file mode 100644 +index 0000000..7b9c37e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o +new file mode 100644 +index 0000000..3418a85 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o +new file mode 100644 +index 0000000..8133426 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o +new file mode 100644 +index 0000000..f423911 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o +new file mode 100644 +index 0000000..1c377d3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o +new file mode 100644 +index 0000000..cab91f3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o +new file mode 100644 +index 0000000..72e8127 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o +new file mode 100644 +index 0000000..cea42bf +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o +new file mode 100644 +index 0000000..664ff89 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o +new file mode 100644 +index 0000000..6ec5017 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o +new file mode 100644 +index 0000000..1398769 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o +new file mode 100644 +index 0000000..831bdc0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o +new file mode 100644 +index 0000000..42cee28 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o +new file mode 100644 +index 0000000..8545078 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o +new file mode 100644 +index 0000000..7b8d2aa +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o +new file mode 100644 +index 0000000..af796a8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o +new file mode 100644 +index 0000000..4885498 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o +new file mode 100644 +index 0000000..34c8eb6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o +new file mode 100644 +index 0000000..8800964 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o +new file mode 100644 +index 0000000..b6d2730 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o +new file mode 100644 +index 0000000..cdc94fa +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o +new file mode 100644 +index 0000000..4d1b194 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o +new file mode 100644 +index 0000000..ef843b3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o +new file mode 100644 +index 0000000..9852a16 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o +new file mode 100644 +index 0000000..9e6a851 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o +new file mode 100644 +index 0000000..d90b9fa +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o +new file mode 100644 +index 0000000..453f789 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o +new file mode 100644 +index 0000000..76f6fc7 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o +new file mode 100644 +index 0000000..9246580 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o +new file mode 100644 +index 0000000..7f25a5e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..f2128f1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..6d67456 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o +new file mode 100644 +index 0000000..d5776ef +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o +new file mode 100644 +index 0000000..5d97544 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o +new file mode 100644 +index 0000000..2641f2b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o +new file mode 100644 +index 0000000..955103c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/rules.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..f599c45 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/rules.ninja +@@ -0,0 +1,73 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: Reanimated ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__reanimated_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__reanimated_Debug ++ command = $PRE_LINK && /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for re-checking globbed directories. ++ ++rule VERIFY_GLOBS ++ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake ++ description = Re-checking globbed directories... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/additional_project_files.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json +new file mode 100644 +index 0000000..a15ba7e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json +@@ -0,0 +1,47 @@ ++{ ++ "buildFiles": [ ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "reanimated::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "arm64-v8a", ++ "artifactName": "reanimated", ++ "output": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so", ++ "runtimeFiles": [ ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so", ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build_mini.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build_mini.json +new file mode 100644 +index 0000000..f24a69d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build_mini.json +@@ -0,0 +1,36 @@ ++{ ++ "buildFiles": [ ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "reanimated::@6890427a1f51a3e7e1df": { ++ "artifactName": "reanimated", ++ "abi": "arm64-v8a", ++ "output": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so", ++ "runtimeFiles": [ ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so", ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build.ninja +new file mode 100644 +index 0000000..6fad67f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build.ninja +@@ -0,0 +1,727 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: Reanimated ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.8 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target reanimated ++ ++ ++############################################# ++# Order-only phony target for reanimated ++ ++build cmake_object_order_depends_target_reanimated: phony || CMakeFiles/reanimated.dir ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools ++ ++build CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android ++ ++build CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target reanimated ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so ++ ++build ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so: CXX_SHARED_LIBRARY_LINKER__reanimated_Debug CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o | /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections ++ LINK_LIBRARIES = -llog /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so -landroid /Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so -latomic -lm ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libreanimated.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so ++ TARGET_PDB = reanimated.so.dbg ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a && /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a && /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build libreanimated.so: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so ++ ++build reanimated: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a ++ ++build all: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Phony target to force glob verification run. ++ ++build /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake_force: phony ++ ++ ++############################################# ++# Re-run CMake to check if globbed directories changed. ++ ++build /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake_force ++ pool = console ++ restat = 1 ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs | ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build_file_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build_file_index.txt +new file mode 100644 +index 0000000..d99157d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build_file_index.txt +@@ -0,0 +1,5 @@ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/cmake_install.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/cmake_install.cmake +new file mode 100644 +index 0000000..9db5c3a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..3994cec +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json +@@ -0,0 +1,357 @@ ++[ ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json.bin +new file mode 100644 +index 0000000..a46e0fb +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/configure_fingerprint.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/configure_fingerprint.bin +new file mode 100644 +index 0000000..8e99ea1 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/configure_fingerprint.bin +@@ -0,0 +1,38 @@ ++C/C++ Structured Log ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  3  3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json  3 Ĕ3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build_mini.json  3 3u ++s ++q/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build.ninja  3 ݓ3y ++w ++u/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build.ninja.txt  3~ ++| ++z/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build_file_index.txt  •3 Ž3 ++} ++{/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json  •3 ۓ3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json.bin  •3  ۓ3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/metadata_generation_command.txt  •3 ++ Ž3| ++z ++x/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/prefab_config.json  •3  3 ++ ++}/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/symbol_folder_index.txt  •3  | Ž3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake  •3  3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake  •3 Ž3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake  •3 3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake  •3 Ž3Z ++X ++V/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt  •3 3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  •3 +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/metadata_generation_command.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/metadata_generation_command.txt +new file mode 100644 +index 0000000..634e794 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/metadata_generation_command.txt +@@ -0,0 +1,29 @@ ++ -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=arm64-v8a ++-DCMAKE_ANDROID_ARCH_ABI=arm64-v8a ++-DANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab ++-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a ++-GNinja ++-DANDROID_STL=c++_shared ++-DREACT_NATIVE_MINOR_VERSION=81 ++-DANDROID_TOOLCHAIN=clang ++-DREACT_NATIVE_DIR=/Users/james/GitHub/Wallet/node_modules/react-native ++-DREACT_NATIVE_WORKLETS_DIR=/Users/james/GitHub/Wallet/node_modules/react-native-worklets ++-DIS_REANIMATED_EXAMPLE_APP=false ++-DREANIMATED_PROFILING=false ++-DREANIMATED_VERSION=4.1.6 ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DREANIMATED_FEATURE_FLAGS=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/prefab_config.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/prefab_config.json +new file mode 100644 +index 0000000..06998f9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/prefab_config.json +@@ -0,0 +1,9 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/symbol_folder_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/symbol_folder_index.txt +new file mode 100644 +index 0000000..f6c11dd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/hash_key.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/hash_key.txt +new file mode 100644 +index 0000000..d3a8694 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/hash_key.txt +@@ -0,0 +1,36 @@ ++# Values used to calculate the hash in this folder name. ++# Should not depend on the absolute path of the project itself. ++# - AGP: 8.11.0. ++# - $NDK is the path to NDK 27.1.12297006. ++# - $PROJECT is the path to the parent folder of the root Gradle build file. ++# - $ABI is the ABI to be built with. The specific value doesn't contribute to the value of the hash. ++# - $HASH is the hash value computed from this text. ++# - $CMAKE is the path to CMake 3.22.1. ++# - $NINJA is the path to Ninja. ++-H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=$ABI ++-DCMAKE_ANDROID_ARCH_ABI=$ABI ++-DANDROID_NDK=$NDK ++-DCMAKE_ANDROID_NDK=$NDK ++-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=$NINJA ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/prefab/$ABI/prefab ++-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/$ABI ++-GNinja ++-DANDROID_STL=c++_shared ++-DREACT_NATIVE_MINOR_VERSION=81 ++-DANDROID_TOOLCHAIN=clang ++-DREACT_NATIVE_DIR=/Users/james/GitHub/Wallet/node_modules/react-native ++-DREACT_NATIVE_WORKLETS_DIR=/Users/james/GitHub/Wallet/node_modules/react-native-worklets ++-DIS_REANIMATED_EXAMPLE_APP=false ++-DREANIMATED_PROFILING=false ++-DREANIMATED_VERSION=4.1.6 ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DREANIMATED_FEATURE_FLAGS=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ba50b13 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,27 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..21e3708 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.81.5) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..a6c6bfa +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake +new file mode 100644 +index 0000000..d4ccd69 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET react-native-worklets::worklets) ++add_library(react-native-worklets::worklets SHARED IMPORTED) ++set_target_properties(react-native-worklets::worklets PROPERTIES ++ IMPORTED_LOCATION "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cxx/Debug/3t3jm3v4/obj/arm64-v8a/libworklets.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/prefab-headers/worklets" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake +new file mode 100644 +index 0000000..4f4ecdf +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.5.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..0f00d43 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,27 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..21e3708 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.81.5) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..73a42f7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake +new file mode 100644 +index 0000000..32609c9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET react-native-worklets::worklets) ++add_library(react-native-worklets::worklets SHARED IMPORTED) ++set_target_properties(react-native-worklets::worklets PROPERTIES ++ IMPORTED_LOCATION "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cxx/Debug/3t3jm3v4/obj/x86_64/libworklets.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/prefab-headers/worklets" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake +new file mode 100644 +index 0000000..4f4ecdf +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.5.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cache-v2-6f38ba9ab7b74f2e6cfe.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cache-v2-6f38ba9ab7b74f2e6cfe.json +new file mode 100644 +index 0000000..2ebab4b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cache-v2-6f38ba9ab7b74f2e6cfe.json +@@ -0,0 +1,1479 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "ANDROID_TOOLCHAIN", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "clang" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "Reanimated" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "IS_REANIMATED_EXAMPLE_APP", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "REACT_NATIVE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native" ++ }, ++ { ++ "name" : "REACT_NATIVE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "81" ++ }, ++ { ++ "name" : "REACT_NATIVE_WORKLETS_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets" ++ }, ++ { ++ "name" : "REANIMATED_FEATURE_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" ++ }, ++ { ++ "name" : "REANIMATED_PROFILING", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "REANIMATED_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "4.1.6" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "Reanimated_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64" ++ }, ++ { ++ "name" : "Reanimated_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "Reanimated_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" ++ }, ++ { ++ "name" : "fbjni_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for fbjni." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni" ++ }, ++ { ++ "name" : "reanimated_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;android;general;worklets;general;ReactAndroid::reactnative;" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-78b18d26fbcf07d127de.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-78b18d26fbcf07d127de.json +new file mode 100644 +index 0000000..e47da52 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-78b18d26fbcf07d127de.json +@@ -0,0 +1,208 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "source" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/codemodel-v2-2981c4b98a4f6609961a.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/codemodel-v2-2981c4b98a4f6609961a.json +new file mode 100644 +index 0000000..fe8fc36 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/codemodel-v2-2981c4b98a4f6609961a.json +@@ -0,0 +1,60 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.13" ++ }, ++ "projectIndex" : 0, ++ "source" : ".", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0 ++ ], ++ "name" : "Reanimated", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "reanimated::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-reanimated-Debug-63f9c61a51dac5fad3ca.json", ++ "name" : "reanimated", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "source" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/index-2026-06-08T20-47-00-0994.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/index-2026-06-08T20-47-00-0994.json +new file mode 100644 +index 0000000..d8fcb07 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/index-2026-06-08T20-47-00-0994.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-2981c4b98a4f6609961a.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-6f38ba9ab7b74f2e6cfe.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-78b18d26fbcf07d127de.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-6f38ba9ab7b74f2e6cfe.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-78b18d26fbcf07d127de.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-2981c4b98a4f6609961a.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/target-reanimated-Debug-63f9c61a51dac5fad3ca.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/target-reanimated-Debug-63f9c61a51dac5fad3ca.json +new file mode 100644 +index 0000000..7612482 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/target-reanimated-Debug-63f9c61a51dac5fad3ca.json +@@ -0,0 +1,877 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "add_compile_options", ++ "target_compile_options", ++ "target_compile_reactnative_options", ++ "target_compile_definitions", ++ "target_include_directories" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt", ++ "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 48, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 95, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 99, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 12, ++ "parent" : 0 ++ }, ++ { ++ "command" : 4, ++ "file" : 0, ++ "line" : 54, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 1, ++ "line" : 30, ++ "parent" : 5 ++ }, ++ { ++ "command" : 5, ++ "file" : 1, ++ "line" : 33, ++ "parent" : 5 ++ }, ++ { ++ "command" : 6, ++ "file" : 0, ++ "line" : 60, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_NO_CONFIG=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_USE_LIBCPP=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_MOBILE=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-Wall" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-Werror" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-fexceptions" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-frtti" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-std=c++20" ++ }, ++ { ++ "backtrace" : 6, ++ "fragment" : "-DLOG_TAG=\\\"ReactNative\\\"" ++ }, ++ { ++ "fragment" : "-std=gnu++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "backtrace" : 7, ++ "define" : "RN_SERIALIZABLE_STATE" ++ }, ++ { ++ "define" : "reanimated_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp" ++ }, ++ { ++ "backtrace" : 8, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" ++ }, ++ { ++ "backtrace" : 3, ++ "isSystem" : true, ++ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 1 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14, ++ 15, ++ 16, ++ 17, ++ 18, ++ 19, ++ 20, ++ 21, ++ 22, ++ 23, ++ 24, ++ 25, ++ 26, ++ 27, ++ 28, ++ 29, ++ 30, ++ 31, ++ 32, ++ 33, ++ 34, ++ 35, ++ 36, ++ 37, ++ 38, ++ 39, ++ 40, ++ 41, ++ 42, ++ 43, ++ 44, ++ 45, ++ 46, ++ 47, ++ 48, ++ 49, ++ 50, ++ 51, ++ 52, ++ 53, ++ 54, ++ 55, ++ 56, ++ 57, ++ 58, ++ 59, ++ 60, ++ 61, ++ 62, ++ 63, ++ 64, ++ 65, ++ 66, ++ 67, ++ 68, ++ 69, ++ 70 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "reanimated::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-llog", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-landroid", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "reanimated", ++ "nameOnDisk" : "libreanimated.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14, ++ 15, ++ 16, ++ 17, ++ 18, ++ 19, ++ 20, ++ 21, ++ 22, ++ 23, ++ 24, ++ 25, ++ 26, ++ 27, ++ 28, ++ 29, ++ 30, ++ 31, ++ 32, ++ 33, ++ 34, ++ 35, ++ 36, ++ 37, ++ 38, ++ 39, ++ 40, ++ 41, ++ 42, ++ 43, ++ 44, ++ 45, ++ 46, ++ 47, ++ 48, ++ 49, ++ 50, ++ 51, ++ 52, ++ 53, ++ 54, ++ 55, ++ 56, ++ 57, ++ 58, ++ 59, ++ 60, ++ 61, ++ 62, ++ 63, ++ 64, ++ 65, ++ 66, ++ 67, ++ 68, ++ 69, ++ 70 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/OnLoad.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_deps b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_deps +new file mode 100644 +index 0000000..fcf4f3a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_deps differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_log b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_log +new file mode 100644 +index 0000000..7ec008d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_log +@@ -0,0 +1,147 @@ ++# ninja log v5 ++0 96 0 /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs 9c1490dad55027ef ++29484 48452 1769779368327721848 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o 2606a5e7c32fa2b9 ++34 9943 1769779329840329397 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o 8dc772465a142b81 ++13516 39360 1769779359210490891 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o 475769c12f9b8a ++4104 22150 1769779342015627208 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o 7e1d236f5fc85bd6 ++16886 39037 1769779358883961084 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o 99f20bf369e08a67 ++30 4484 1769779324386805791 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o 9ca370ab1508462d ++80748 92150 1769779412036753366 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o 73ef6cbb131f4a98 ++25213 34226 1769779354110855784 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o f4402267afcb6658 ++37 16886 1769779336703155977 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o a5f482c70d6d39d1 ++67716 81770 1769779401654751256 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o b4728588fb9411b4 ++35735 50260 1769779370145067057 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o 4680589b9afb99a5 ++52 16784 1769779336648244342 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o e6453388a32262b4 ++34226 51647 1769779371498940090 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o d77900b97925048f ++35 17377 1769779337224887912 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o 18394ea1fd8b5e62 ++40 4103 1769779323995141928 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o 212e3cf732075cfa ++47 25525 1769779345246730410 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o 9c286473204fed92 ++23135 43799 1769779363637321654 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o e355a556b1c2016d ++75218 91213 1769779411048978829 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o 6be26013d26852e8 ++33172 39364 1769779359266193965 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o 7bdb7910b2a997cf ++45459 57370 1769779377239108158 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o cc32523e7970b7f6 ++77404 96984 1769779416832164354 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o ccb35515ea2ee1ca ++22151 28786 1769779348652001076 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o f2f33831dfe21d15 ++48453 60327 1769779380190905747 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o b7e2e64d4e68d553 ++17377 25213 1769779345111748468 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o b5f9097b1ecad26f ++43 4662 1769779324571347817 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o c54994fde5e39a8c ++52683 64779 1769779384654982172 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o 3802ee82e8b4fee8 ++23156 45459 1769779365320469297 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o ed9b8dc308e76898 ++32 43045 1769779362596215580 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o 7febe31d11f175af ++25525 33172 1769779353078132736 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o a8b2bf0b73701d7e ++86500 89619 1769779409522103656 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o 1a28ce3eed90b319 ++81770 101426 1769779421241291182 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o 706300bcf17fcc5 ++39364 53655 1769779373509803326 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o 6523a91cd124238f ++60328 75357 1769779395187769721 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o 2bcf2713bd81b403 ++16785 48046 1769779367811117546 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o d46ce6a4988083a8 ++39037 52682 1769779372545844832 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o 5eb84fcdccb0f1d9 ++29 13516 1769779333389679965 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o 5e56db405abad8f0 ++39361 53677 1769779373552417477 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o 21face1ce5df4371 ++43046 56491 1769779376361136952 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o 33a4198f80537637 ++64551 77403 1769779397275538761 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o e1e2c1d4fea7d741 ++70740 83866 1769779403745892755 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o 68ab3f60a4364718 ++64779 67716 1769779387590330411 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o eccd1b4ad981886 ++43800 58548 1769779378376230341 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o d945e784cf2304e5 ++9946 29483 1769779349380092835 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o d3533c71eedeafad ++57717 75218 1769779395030503389 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o 989f1b0ec6b6d086 ++48047 62284 1769779382133305451 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o 8bb35c1329cb683a ++28786 35735 1769779355629746995 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o c59a8e8358a9606f ++53655 65833 1769779385713517374 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o 7cd3d2d62721839f ++57370 69280 1769779389134148176 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o 666b5140c76c3be4 ++56491 57717 1769779377620696504 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o 4ffa84f06d77454c ++73929 89824 1769779409644105793 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o 7eab45492571fe00 ++67590 71636 1769779391528825213 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o bbb5263162d95017 ++53677 64550 1769779384429250009 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o 4c36a36a13c40544 ++50260 61781 1769779381673368577 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o 8eb3cfc87de99e6a ++51647 67590 1769779387371365885 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o 16e8c79a71735e3 ++83866 96760 1769779416643710309 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o aebd52c61793894b ++58549 70962 1769779390788261756 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o a15ffb5e81b84c ++84987 94501 1769779414379774923 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o fdd984c993e3d1a1 ++62285 73929 1769779393822926575 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o 544c9731dcd9afe7 ++65833 78912 1769779398799842344 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o 828b46d8fbf96e31 ++75358 80747 1769779400644852595 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o e30bac7826be9e87 ++70962 83838 1769779403730713792 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o 2682aec26766dd0f ++78912 90829 1769779410708934364 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o 2743f5888622d1af ++83839 89644 1769779409535510277 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o 295b5a19a4058da4 ++69281 84986 1769779404836485760 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o 8bb6bb1b25997ad1 ++4484 23135 1769779342929201825 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o b749becb436ebe29 ++61781 70740 1769779390624065235 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o 9b8c992a0ef428f5 ++4662 23156 1769779343018624146 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o 3216d77fe6c8cedd ++89644 93152 1769779413054670127 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o 209825bde6157d0c ++89824 98935 1769779418831671042 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o 49ee2fe526a7a70c ++71637 86499 1769779406367961768 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o 1a44ea860755ae79 ++89619 101116 1769779420982640970 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o 268c907284b4254b ++101426 102175 1769779421938616597 ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so 3ec0516ccd5e872e ++2 219 0 /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs 9c1490dad55027ef ++39 9049 1780952146157470262 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o c3acf002d7ca1cc5 ++35 9854 1780952146972418493 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o a7ceb8cf7d2764eb ++41 10115 1780952147231268346 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o 7a68e627539d7393 ++34 18931 1780952156011669796 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o 5255f20e7a3fe7 ++32 25820 1780952162895346103 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o 53ad649443acadd9 ++64 30181 1780952167215611166 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o 2838e4afbb4d5b77 ++37 30302 1780952167334621899 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o 3cd06c4b4b538d40 ++36 31156 1780952168223258127 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o a557e4df80f6ac3d ++9050 41204 1780952178265313440 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o 6fdbad712194cd01 ++10115 42726 1780952179764574776 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o ef986f51deb78595 ++9854 42761 1780952179803836753 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o a4aac96cd1838d88 ++31156 44810 1780952181885687134 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o 34267f3c2c12b56 ++56 44985 1780952181852132334 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o e8b72afcd93692fe ++41204 49736 1780952186850281783 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o cf513aee4f7c84c4 ++18935 50168 1780952187200975642 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o 3cefe350df2c1f4c ++44985 55071 1780952192187703002 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o cc7b280d3c234869 ++44810 57610 1780952194698308314 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o 39e5e19c0068d6a2 ++49736 61119 1780952198213591722 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o 15153f2706568d72 ++30302 64690 1780952201665564257 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o dec1f80f4e8cac3 ++25821 65332 1780952202284331012 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o b739d57bbba91d7e ++55074 65615 1780952202703418922 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o b7b7408398a1745f ++33 70569 1780952207177504790 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o 428abd4384411808 ++42727 73429 1780952210472729823 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o 2f4f901f5db65f36 ++42762 76953 1780952213967287285 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o 30fd3355b2605f9f ++30182 81092 1780952217945465488 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o 6ddf9d06e3861b41 ++50168 83223 1780952220252883865 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o a3e8bb4b75992ecd ++61119 88426 1780952225510774225 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o 2229ec8ac7731dc ++57611 91136 1780952228166121115 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o 9fbd53f80743ce93 ++64690 93332 1780952230388593159 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o dab9cd2d8b105a01 ++65332 95715 1780952232736414655 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o c154699f96647a83 ++65615 96065 1780952233071147875 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o 58998b08d9692818 ++70569 102292 1780952239310085821 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o a97ebfd5c251d2b6 ++102293 108172 1780952245288769182 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o 27fee6e2fb42c6b1 ++76953 112025 1780952248943748306 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o 4f590e1968786570 ++73431 113012 1780952249710534829 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o dec03c889e294dfa ++83224 120405 1780952257457227223 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o 1b374eb84dc8d34c ++81092 123732 1780952260642050957 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o e784f78c68225263 ++88427 125173 1780952262269911607 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o 899a018ca6d7e585 ++96065 131786 1780952268858667684 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o 49fe140f65400de1 ++93333 132146 1780952269242048992 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o e6a241d7ee41ac9 ++95715 134561 1780952271615625129 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o eeeb47a5dcb962c0 ++91137 140536 1780952277473049289 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o 9e0c0b8db2938e0 ++132146 141895 1780952278979609603 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o 574dcbd9749d0168 ++108173 145656 1780952282667200037 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o ac3039fe6e5371e0 ++113013 148764 1780952285777909121 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o b082c7dc94d1590f ++123733 149108 1780952286169890567 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o 89e38ebe1f1d86ce ++140537 150823 1780952287888632714 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o d4380da6a81f8479 ++125173 154902 1780952291965074320 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o ead60eb41dcb93d5 ++120405 157218 1780952294222783697 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o 82bc12bff67a98af ++112026 157460 1780952294404290761 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o f7f5d260fb0864d1 ++131788 161378 1780952298453225481 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o c52a8f87941d1c27 ++134562 164648 1780952301670714935 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o e53cca3b2eb49096 ++157460 168452 1780952305551780280 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o cfd074f67a707571 ++141895 170279 1780952307333094179 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o 40fc5340f9dbd308 ++149108 172807 1780952309887590073 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o 3f3c1dcdb450478a ++148764 172833 1780952309902146738 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o ec3a664aecdc2e0e ++145656 174405 1780952311451398491 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o 3327f74a75df090b ++170279 175528 1780952312637603696 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o 8817083b9f263d3f ++150823 177134 1780952314017834548 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o 2a11243c0c122636 ++154904 182786 1780952319782649014 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o 23b3f6808311017f ++174405 184388 1780952321459433800 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o 13a47be470edd29a ++164648 184860 1780952321934264225 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o 479f08ac9e508fd9 ++177134 185106 1780952322216776187 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o e29fe925b70df3f8 ++157218 185526 1780952322533246146 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o 8a5e990e0c7237c3 ++168452 186720 1780952323814925879 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o 7a1d860ff9de24f2 ++175528 189472 1780952326571220730 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o 5c64042353977509 ++172834 192202 1780952329303719552 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o e1b458708e82042a ++161379 192567 1780952329609497589 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o 913ef71029d1146f ++184388 196013 1780952333124267578 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o 63444c69ba2d2a2 ++182786 198450 1780952335518233106 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o 65aa210249f2d059 ++172807 199782 1780952336796101455 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o 4e3fc6c8a48bc679 ++199782 200620 1780952337582519125 ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so 6db63677d74ffe09 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeCache.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeCache.txt +new file mode 100644 +index 0000000..4d34aed +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeCache.txt +@@ -0,0 +1,437 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 ++# It was generated by CMake: /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++ANDROID_TOOLCHAIN:UNINITIALIZED=clang ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=Reanimated ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//No help, variable specified on the command line. ++CMAKE_TOOLCHAIN_FILE:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++IS_REANIMATED_EXAMPLE_APP:UNINITIALIZED=false ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_DIR:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=81 ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_WORKLETS_DIR:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-worklets ++ ++//No help, variable specified on the command line. ++REANIMATED_FEATURE_FLAGS:UNINITIALIZED=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] ++ ++//No help, variable specified on the command line. ++REANIMATED_PROFILING:UNINITIALIZED=false ++ ++//No help, variable specified on the command line. ++REANIMATED_VERSION:UNINITIALIZED=4.1.6 ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++Reanimated_BINARY_DIR:STATIC=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 ++ ++//Value Computed by CMake ++Reanimated_IS_TOP_LEVEL:STATIC=ON ++ ++//Value Computed by CMake ++Reanimated_SOURCE_DIR:STATIC=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android ++ ++//The directory containing a CMake configuration file for fbjni. ++fbjni_DIR:PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni ++ ++//Dependencies for the target ++reanimated_LIB_DEPENDS:STATIC=general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;android;general;worklets;general;ReactAndroid::reactnative; ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..a3a9333 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "18.0.2") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..c291d1a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "18.0.2") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..0f980ec +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..d44ce11 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..62b8ebf +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-25.2.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "25.2.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") ++ ++include("/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "x86_64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..adb33eb +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..89e8bdf +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeOutput.log b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..9c70a60 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,258 @@ ++The target system is: Android - 1 - x86_64 ++The host system is: Darwin - 25.2.0 - x86_64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_1dd07 && [1/2] Building C object CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o -x c /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0 ++ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_1dd07 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_1dd07 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_1dd07 && [1/2] Building C object CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o -x c /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0] ++ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_1dd07] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_1dd07 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_1dd07] ==> ignore ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_f9ed9 && [1/2] Building CXX object CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0 ++ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_f9ed9 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_f9ed9 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_f9ed9 && [1/2] Building CXX object CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0] ++ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_f9ed9] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_f9ed9 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_f9ed9] ==> ignore ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..91b78cb +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/edit_cache.dir ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake +new file mode 100644 +index 0000000..91bb0c5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake +@@ -0,0 +1,92 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by CMake Version 3.22 ++cmake_policy(SET CMP0009 NEW) ++ ++# REANIMATED_COMMON_CPP_SOURCES at CMakeLists.txt:40 (file) ++file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/*.cpp") ++set(OLD_GLOB ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/common.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/core/CSSTransition.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/linear.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/steps.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/algorithms.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/interpolators.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/keyframes.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/props.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Tools/FeatureFlags.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs") ++endif() ++ ++# REANIMATED_ANDROID_CPP_SOURCES at CMakeLists.txt:42 (file) ++file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/*.cpp") ++set(OLD_GLOB ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs") ++endif() +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.check_cache b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs +new file mode 100644 +index 0000000..2b38fac +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs +@@ -0,0 +1 @@ ++# This file is generated by CMake for checking of the VerifyGlobs.cmake file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o +new file mode 100644 +index 0000000..b99f84e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o +new file mode 100644 +index 0000000..0a9b4c2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o +new file mode 100644 +index 0000000..fe20250 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o +new file mode 100644 +index 0000000..1798be2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o +new file mode 100644 +index 0000000..4a657fe +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o +new file mode 100644 +index 0000000..e935c5f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o +new file mode 100644 +index 0000000..2b35985 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o +new file mode 100644 +index 0000000..208c082 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o +new file mode 100644 +index 0000000..36ded12 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o +new file mode 100644 +index 0000000..93eb193 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o +new file mode 100644 +index 0000000..8af3ab9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o +new file mode 100644 +index 0000000..55888cd +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o +new file mode 100644 +index 0000000..48f940a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o +new file mode 100644 +index 0000000..ffc4eb2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o +new file mode 100644 +index 0000000..6fa5f27 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o +new file mode 100644 +index 0000000..c3dcb60 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o +new file mode 100644 +index 0000000..a5aa63a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o +new file mode 100644 +index 0000000..f88c5fa +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o +new file mode 100644 +index 0000000..782b265 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o +new file mode 100644 +index 0000000..9fe9d8d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o +new file mode 100644 +index 0000000..0c5d118 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o +new file mode 100644 +index 0000000..f2a97d7 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o +new file mode 100644 +index 0000000..50fbff4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o +new file mode 100644 +index 0000000..ef9d409 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o +new file mode 100644 +index 0000000..23fcf29 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o +new file mode 100644 +index 0000000..e034a7e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o +new file mode 100644 +index 0000000..ea12dc0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o +new file mode 100644 +index 0000000..e5bef61 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o +new file mode 100644 +index 0000000..6b90563 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o +new file mode 100644 +index 0000000..8987f6c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o +new file mode 100644 +index 0000000..d5e2ed9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o +new file mode 100644 +index 0000000..5412a9d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o +new file mode 100644 +index 0000000..247e784 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o +new file mode 100644 +index 0000000..fa13b79 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o +new file mode 100644 +index 0000000..fc3f655 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o +new file mode 100644 +index 0000000..f20bbce +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o +new file mode 100644 +index 0000000..c1e9c07 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o +new file mode 100644 +index 0000000..73512dc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o +new file mode 100644 +index 0000000..88d68ad +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o +new file mode 100644 +index 0000000..837aa98 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o +new file mode 100644 +index 0000000..147b1c2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o +new file mode 100644 +index 0000000..4c8cbb0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o +new file mode 100644 +index 0000000..7d665fb +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o +new file mode 100644 +index 0000000..4e24552 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o +new file mode 100644 +index 0000000..ccb468e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o +new file mode 100644 +index 0000000..212c44f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o +new file mode 100644 +index 0000000..ca6c43b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o +new file mode 100644 +index 0000000..fa685b1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o +new file mode 100644 +index 0000000..1ab7b91 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o +new file mode 100644 +index 0000000..d0ba2d2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o +new file mode 100644 +index 0000000..cf37403 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o +new file mode 100644 +index 0000000..cfcdeb5 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o +new file mode 100644 +index 0000000..bbf36a5 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o +new file mode 100644 +index 0000000..50a97f9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o +new file mode 100644 +index 0000000..df8cf1a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o +new file mode 100644 +index 0000000..b701314 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o +new file mode 100644 +index 0000000..970f0f6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o +new file mode 100644 +index 0000000..2ba2787 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o +new file mode 100644 +index 0000000..10a3838 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o +new file mode 100644 +index 0000000..be02063 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o +new file mode 100644 +index 0000000..5cee647 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o +new file mode 100644 +index 0000000..5abf66c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o +new file mode 100644 +index 0000000..5fba5c4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o +new file mode 100644 +index 0000000..1de9065 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o +new file mode 100644 +index 0000000..35c9611 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..328805c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..b3e2b22 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o +new file mode 100644 +index 0000000..45ae179 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o +new file mode 100644 +index 0000000..4ee7ab6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o +new file mode 100644 +index 0000000..45ebd26 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o +new file mode 100644 +index 0000000..002ec22 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/rules.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..be75730 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/rules.ninja +@@ -0,0 +1,73 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: Reanimated ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__reanimated_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__reanimated_Debug ++ command = $PRE_LINK && /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for re-checking globbed directories. ++ ++rule VERIFY_GLOBS ++ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake ++ description = Re-checking globbed directories... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/additional_project_files.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json +new file mode 100644 +index 0000000..98c3a84 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json +@@ -0,0 +1,47 @@ ++{ ++ "buildFiles": [ ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "reanimated::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "x86_64", ++ "artifactName": "reanimated", ++ "output": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so", ++ "runtimeFiles": [ ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so", ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build_mini.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build_mini.json +new file mode 100644 +index 0000000..2286009 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build_mini.json +@@ -0,0 +1,36 @@ ++{ ++ "buildFiles": [ ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "reanimated::@6890427a1f51a3e7e1df": { ++ "artifactName": "reanimated", ++ "abi": "x86_64", ++ "output": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so", ++ "runtimeFiles": [ ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so", ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build.ninja +new file mode 100644 +index 0000000..1251fbd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build.ninja +@@ -0,0 +1,727 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: Reanimated ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.8 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target reanimated ++ ++ ++############################################# ++# Order-only phony target for reanimated ++ ++build cmake_object_order_depends_target_reanimated: phony || CMakeFiles/reanimated.dir ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools ++ ++build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools ++ ++build CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android ++ ++build CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS ++ DEP_FILE = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 ++ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target reanimated ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so ++ ++build ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so: CXX_SHARED_LIBRARY_LINKER__reanimated_Debug CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o | /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so /Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections ++ LINK_LIBRARIES = -llog /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so -landroid /Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so -latomic -lm ++ OBJECT_DIR = CMakeFiles/reanimated.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libreanimated.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so ++ TARGET_PDB = reanimated.so.dbg ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 && /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 && /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build libreanimated.so: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so ++ ++build reanimated: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 ++ ++build all: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Phony target to force glob verification run. ++ ++build /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake_force: phony ++ ++ ++############################################# ++# Re-run CMake to check if globbed directories changed. ++ ++build /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake_force ++ pool = console ++ restat = 1 ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs | ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build_file_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build_file_index.txt +new file mode 100644 +index 0000000..3719726 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build_file_index.txt +@@ -0,0 +1,5 @@ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/cmake_install.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/cmake_install.cmake +new file mode 100644 +index 0000000..6288119 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json +new file mode 100644 +index 0000000..6214a20 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json +@@ -0,0 +1,357 @@ ++[ ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json.bin +new file mode 100644 +index 0000000..10c0dbc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/configure_fingerprint.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/configure_fingerprint.bin +new file mode 100644 +index 0000000..5631a85 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/configure_fingerprint.bin +@@ -0,0 +1,38 @@ ++C/C++ Structured Log ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmakeC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  3 3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake  3 Ž3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake  3 3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake  3 Ž3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/additional_project_files.txt  3  3 ++~ ++|/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json  3 3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build_mini.json  3 3r ++p ++n/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build.ninja  3  3v ++t ++r/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build.ninja.txt  3 ++{ ++y ++w/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build_file_index.txt  3  Ž3| ++z ++x/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json  3  3 ++~ ++|/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json.bin  3  3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/metadata_generation_command.txt  3 Ž3y ++w ++u/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/prefab_config.json  3 3~ ++| ++z/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/symbol_folder_index.txt  3 y Ž3Z ++X ++V/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt  3 3 ++ ++/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  3 +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/metadata_generation_command.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/metadata_generation_command.txt +new file mode 100644 +index 0000000..0e83860 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/metadata_generation_command.txt +@@ -0,0 +1,29 @@ ++ -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=x86_64 ++-DCMAKE_ANDROID_ARCH_ABI=x86_64 ++-DANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab ++-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 ++-GNinja ++-DANDROID_STL=c++_shared ++-DREACT_NATIVE_MINOR_VERSION=81 ++-DANDROID_TOOLCHAIN=clang ++-DREACT_NATIVE_DIR=/Users/james/GitHub/Wallet/node_modules/react-native ++-DREACT_NATIVE_WORKLETS_DIR=/Users/james/GitHub/Wallet/node_modules/react-native-worklets ++-DIS_REANIMATED_EXAMPLE_APP=false ++-DREANIMATED_PROFILING=false ++-DREANIMATED_VERSION=4.1.6 ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DREANIMATED_FEATURE_FLAGS=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/prefab_config.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/prefab_config.json +new file mode 100644 +index 0000000..06998f9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/prefab_config.json +@@ -0,0 +1,9 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/symbol_folder_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/symbol_folder_index.txt +new file mode 100644 +index 0000000..62bb889 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..3994cec +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +@@ -0,0 +1,357 @@ ++[ ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json +new file mode 100644 +index 0000000..6214a20 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json +@@ -0,0 +1,357 @@ ++[ ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++}, ++{ ++ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", ++ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/CMakeLists.txt b/node_modules/react-native-reanimated/android/CMakeLists.txt +index c4e4df9..609fe30 100644 +--- a/node_modules/react-native-reanimated/android/CMakeLists.txt ++++ b/node_modules/react-native-reanimated/android/CMakeLists.txt +@@ -81,11 +81,13 @@ endif() + + add_library(worklets SHARED IMPORTED) + ++# AGP 8.x+ moved cmake intermediates to cxx/{type}/{hash}/obj/ (hash is unpredictable). ++# Use the prefab_package path instead, which is stable and available before this build runs. + set_target_properties( + worklets + PROPERTIES + IMPORTED_LOCATION +- "${REACT_NATIVE_WORKLETS_DIR}/android/build/intermediates/cmake/${BUILD_TYPE}/obj/${ANDROID_ABI}/libworklets.so" ++ "${REACT_NATIVE_WORKLETS_DIR}/android/build/intermediates/prefab_package/${BUILD_TYPE}/prefab/modules/worklets/libs/android.${ANDROID_ABI}/libworklets.so" + ) + + set_target_properties(reanimated PROPERTIES LINKER_LANGUAGE CXX) +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/results.bin b/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..bbb8ae0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/results.bin b/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..bbb8ae0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/results.bin b/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..bbb8ae0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/buildConfig/debug/com/swmansion/reanimated/BuildConfig.java b/node_modules/react-native-reanimated/android/build/generated/source/buildConfig/debug/com/swmansion/reanimated/BuildConfig.java +new file mode 100644 +index 0000000..27de2a0 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/buildConfig/debug/com/swmansion/reanimated/BuildConfig.java +@@ -0,0 +1,20 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.swmansion.reanimated; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "com.swmansion.reanimated"; ++ public static final String BUILD_TYPE = "debug"; ++ // Field from default config. ++ public static final int EXOPACKAGE_FLAGS = 0; ++ // Field from default config. ++ public static final boolean IS_INTERNAL_BUILD = false; ++ // Field from default config. ++ public static final int REACT_NATIVE_MINOR_VERSION = 81; ++ // Field from default config. ++ public static final boolean REANIMATED_PROFILING = false; ++ // Field from default config. ++ public static final String REANIMATED_VERSION_JAVA = "4.1.6"; ++} +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/java/com/swmansion/reanimated/NativeReanimatedModuleSpec.java b/node_modules/react-native-reanimated/android/build/generated/source/codegen/java/com/swmansion/reanimated/NativeReanimatedModuleSpec.java +new file mode 100644 +index 0000000..d26d996 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/java/com/swmansion/reanimated/NativeReanimatedModuleSpec.java +@@ -0,0 +1,37 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleJavaSpec.js ++ * ++ * @nolint ++ */ ++ ++package com.swmansion.reanimated; ++ ++import com.facebook.proguard.annotations.DoNotStrip; ++import com.facebook.react.bridge.ReactApplicationContext; ++import com.facebook.react.bridge.ReactContextBaseJavaModule; ++import com.facebook.react.bridge.ReactMethod; ++import com.facebook.react.turbomodule.core.interfaces.TurboModule; ++import javax.annotation.Nonnull; ++ ++public abstract class NativeReanimatedModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "ReanimatedModule"; ++ ++ public NativeReanimatedModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod(isBlockingSynchronousMethod = true) ++ @DoNotStrip ++ public abstract boolean installTurboModule(); ++} +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/CMakeLists.txt b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/CMakeLists.txt +new file mode 100644 +index 0000000..1da5ca6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/CMakeLists.txt +@@ -0,0 +1,28 @@ ++# Copyright (c) Meta Platforms, Inc. and affiliates. ++# ++# This source code is licensed under the MIT license found in the ++# LICENSE file in the root directory of this source tree. ++ ++cmake_minimum_required(VERSION 3.13) ++set(CMAKE_VERBOSE_MAKEFILE on) ++ ++file(GLOB react_codegen_SRCS CONFIGURE_DEPENDS *.cpp react/renderer/components/rnreanimated/*.cpp) ++ ++add_library( ++ react_codegen_rnreanimated ++ OBJECT ++ ${react_codegen_SRCS} ++) ++ ++target_include_directories(react_codegen_rnreanimated PUBLIC . react/renderer/components/rnreanimated) ++ ++target_link_libraries( ++ react_codegen_rnreanimated ++ fbjni ++ jsi ++ # We need to link different libraries based on whether we are building rncore or not, that's necessary ++ # because we want to break a circular dependency between react_codegen_rncore and reactnative ++ reactnative ++) ++ ++target_compile_reactnative_options(react_codegen_rnreanimated PRIVATE) +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.cpp +new file mode 100644 +index 0000000..5cf68be +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.cpp +@@ -0,0 +1,22 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateComponentDescriptorCpp.js ++ */ ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++void rnreanimated_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry) { ++ ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.h +new file mode 100644 +index 0000000..a65e2b9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.h +@@ -0,0 +1,24 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateComponentDescriptorH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++ ++ ++void rnreanimated_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry); ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.cpp +new file mode 100644 +index 0000000..6d42306 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.cpp +@@ -0,0 +1,16 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateEventEmitterCpp.js ++ */ ++ ++#include ++ ++ ++namespace facebook::react { ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.h +new file mode 100644 +index 0000000..2845a63 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.h +@@ -0,0 +1,17 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateEventEmitterH.js ++ */ ++#pragma once ++ ++#include ++ ++ ++namespace facebook::react { ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.cpp +new file mode 100644 +index 0000000..6b396e9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.cpp +@@ -0,0 +1,19 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GeneratePropsCpp.js ++ */ ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.h +new file mode 100644 +index 0000000..870864b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.h +@@ -0,0 +1,18 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GeneratePropsH.js ++ */ ++#pragma once ++ ++ ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.cpp +new file mode 100644 +index 0000000..8bdfad6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.cpp +@@ -0,0 +1,17 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateShadowNodeCpp.js ++ */ ++ ++#include ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.h +new file mode 100644 +index 0000000..66a300f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.h +@@ -0,0 +1,23 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateShadowNodeH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.cpp +new file mode 100644 +index 0000000..cbb65ea +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.cpp +@@ -0,0 +1,16 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateStateCpp.js ++ */ ++#include ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.h +new file mode 100644 +index 0000000..2e55bce +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.h +@@ -0,0 +1,20 @@ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateStateH.js ++ */ ++#pragma once ++ ++#include ++#ifdef RN_SERIALIZABLE_STATE ++#include ++#endif ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI-generated.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI-generated.cpp +new file mode 100644 +index 0000000..9564610 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI-generated.cpp +@@ -0,0 +1,26 @@ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleCpp.js ++ */ ++ ++#include "rnreanimatedJSI.h" ++ ++namespace facebook::react { ++ ++static jsi::Value __hostFunction_NativeReanimatedModuleCxxSpecJSI_installTurboModule(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->installTurboModule( ++ rt ++ ); ++} ++ ++NativeReanimatedModuleCxxSpecJSI::NativeReanimatedModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("ReanimatedModule", jsInvoker) { ++ methodMap_["installTurboModule"] = MethodMetadata {0, __hostFunction_NativeReanimatedModuleCxxSpecJSI_installTurboModule}; ++} ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI.h +new file mode 100644 +index 0000000..78e7faa +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI.h +@@ -0,0 +1,71 @@ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++ ++namespace facebook::react { ++ ++ ++ class JSI_EXPORT NativeReanimatedModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeReanimatedModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual bool installTurboModule(jsi::Runtime &rt) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeReanimatedModuleCxxSpec : public TurboModule { ++public: ++ jsi::Value create(jsi::Runtime &rt, const jsi::PropNameID &propName) override { ++ return delegate_.create(rt, propName); ++ } ++ ++ std::vector getPropertyNames(jsi::Runtime& runtime) override { ++ return delegate_.getPropertyNames(runtime); ++ } ++ ++ static constexpr std::string_view kModuleName = "ReanimatedModule"; ++ ++protected: ++ NativeReanimatedModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeReanimatedModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeReanimatedModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeReanimatedModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ bool installTurboModule(jsi::Runtime &rt) override { ++ static_assert( ++ bridging::getParameterCount(&T::installTurboModule) == 1, ++ "Expected installTurboModule(...) to have 1 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::installTurboModule, jsInvoker_, instance_); ++ } ++ ++ private: ++ friend class NativeReanimatedModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated-generated.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated-generated.cpp +new file mode 100644 +index 0000000..8872c89 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated-generated.cpp +@@ -0,0 +1,32 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleJniCpp.js ++ */ ++ ++#include "rnreanimated.h" ++ ++namespace facebook::react { ++ ++static facebook::jsi::Value __hostFunction_NativeReanimatedModuleSpecJSI_installTurboModule(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, BooleanKind, "installTurboModule", "()Z", args, count, cachedMethodId); ++} ++ ++NativeReanimatedModuleSpecJSI::NativeReanimatedModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["installTurboModule"] = MethodMetadata {0, __hostFunction_NativeReanimatedModuleSpecJSI_installTurboModule}; ++} ++ ++std::shared_ptr rnreanimated_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms) { ++ if (moduleName == "ReanimatedModule") { ++ return std::make_shared(params); ++ } ++ return nullptr; ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated.h +new file mode 100644 +index 0000000..01dfea3 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated.h +@@ -0,0 +1,31 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleJniH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++/** ++ * JNI C++ class for module 'NativeReanimatedModule' ++ */ ++class JSI_EXPORT NativeReanimatedModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeReanimatedModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++ ++JSI_EXPORT ++std::shared_ptr rnreanimated_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms); ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/schema.json b/node_modules/react-native-reanimated/android/build/generated/source/codegen/schema.json +new file mode 100644 +index 0000000..f8fcc5e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/schema.json +@@ -0,0 +1 @@ ++{"libraryName":"","modules":{"NativeReanimatedModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"installTurboModule","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"BooleanTypeAnnotation"},"params":[]}}]},"moduleName":"ReanimatedModule"}}} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..ed5d55a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..0c0f867 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.swmansion.reanimated", ++ "variantName": "debug", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-reanimated/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +@@ -0,0 +1,6 @@ ++aarFormatVersion=1.0 ++aarMetadataVersion=1.0 ++minCompileSdk=1 ++minCompileSdkExtension=0 ++minAndroidGradlePluginVersion=1.0.0 ++coreLibraryDesugaringEnabled=false +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-reanimated/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so +new file mode 100755 +index 0000000..2c72c65 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so +new file mode 100644 +index 0000000..aadd325 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so +new file mode 100644 +index 0000000..52c310d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so +new file mode 100644 +index 0000000..11165ed +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreanimated.so +new file mode 100755 +index 0000000..bd83cd4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so +new file mode 100755 +index 0000000..c8d0c8e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so +new file mode 100755 +index 0000000..8e3a868 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so +new file mode 100644 +index 0000000..68ecbda +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so +new file mode 100644 +index 0000000..1372005 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so +new file mode 100644 +index 0000000..9f300cf +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreanimated.so +new file mode 100755 +index 0000000..81f39dc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so +new file mode 100755 +index 0000000..5b9b9c7 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-reanimated/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..c8169f1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-reanimated/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..7a4f2e0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-reanimated/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_command_reanimated b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_command_reanimated +new file mode 100755 +index 0000000..953bbfd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_command_reanimated +@@ -0,0 +1,4 @@ ++/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a \ ++ reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_model.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_model.json +new file mode 100644 +index 0000000..fe6d0a9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_model.json +@@ -0,0 +1,229 @@ ++{ ++ "info": { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "soFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a", ++ "soRepublishFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DANDROID_STL\u003dc++_shared", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d81", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native", ++ "-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets", ++ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", ++ "-DREANIMATED_PROFILING\u003dfalse", ++ "-DREANIMATED_VERSION\u003d4.1.6", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "arm64-v8a", ++ "x86_64" ++ ], ++ "buildTargetSet": [ ++ "reanimated" ++ ], ++ "implicitBuildTargetSet": [ ++ "reanimated" ++ ], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx", ++ "intermediatesBaseFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates", ++ "intermediatesFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx", ++ "gradleModulePathName": ":react-native-reanimated", ++ "moduleRootFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android", ++ "moduleBuildFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build.gradle", ++ "makeFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/james/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/james/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkVersion": "27.1.12297006", ++ "ndkSupportedAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "riscv64", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultStl": "LIBCXX_STATIC", ++ "ndkMetaPlatforms": { ++ "min": 21, ++ "max": 35, ++ "aliases": { ++ "20": 19, ++ "25": 24, ++ "J": 16, ++ "J-MR1": 17, ++ "J-MR2": 18, ++ "K": 19, ++ "L": 21, ++ "L-MR1": 22, ++ "M": 23, ++ "N": 24, ++ "N-MR1": 24, ++ "O": 26, ++ "O-MR1": 27, ++ "P": 28, ++ "Q": 29, ++ "R": 30, ++ "S": 31, ++ "Sv2": 32, ++ "Tiramisu": 33, ++ "UpsideDownCake": 34, ++ "VanillaIceCream": 35 ++ } ++ }, ++ "ndkMetaAbiList": [ ++ { ++ "name": "armeabi-v7a", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm", ++ "triple": "arm-linux-androideabi", ++ "llvmTriple": "armv7-none-linux-androideabi" ++ }, ++ { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ { ++ "name": "riscv64", ++ "bitness": 64, ++ "isDefault": false, ++ "isDeprecated": false, ++ "architecture": "riscv64", ++ "triple": "riscv64-linux-android", ++ "llvmTriple": "riscv64-none-linux-android" ++ }, ++ { ++ "name": "x86", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86", ++ "triple": "i686-linux-android", ++ "llvmTriple": "i686-none-linux-android" ++ }, ++ { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ } ++ ], ++ "cmakeToolchainFile": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cmakeVersionFromDsl": "3.22.1" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "arm64-v8a": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "x86_64": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" ++ }, ++ "LIBCXX_STATIC": {}, ++ "NONE": {}, ++ "SYSTEM": {} ++ }, ++ "project": { ++ "rootBuildGradleFolder": "/Users/james/GitHub/Wallet/android", ++ "sdkFolder": "/Users/james/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [ ++ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" ++ ], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "2x4556162h3l216i6z4i105l5b286r1a1y6570e3w2f2a231g72632v1m205d1z", ++ "fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.11.0.\n# - $NDK is the path to NDK 27.1.12297006.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DREACT_NATIVE_MINOR_VERSION\u003d81\n-DANDROID_TOOLCHAIN\u003dclang\n-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native\n-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets\n-DIS_REANIMATED_EXAMPLE_APP\u003dfalse\n-DREANIMATED_PROFILING\u003dfalse\n-DREANIMATED_VERSION\u003d4.1.6\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON\n-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]", ++ "configurationArguments": [ ++ "-H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android", ++ "-DCMAKE_SYSTEM_NAME\u003dAndroid", ++ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", ++ "-DCMAKE_SYSTEM_VERSION\u003d24", ++ "-DANDROID_PLATFORM\u003dandroid-24", ++ "-DANDROID_ABI\u003darm64-v8a", ++ "-DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a", ++ "-DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab", ++ "-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", ++ "-GNinja", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d81", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native", ++ "-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets", ++ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", ++ "-DREANIMATED_PROFILING\u003dfalse", ++ "-DREANIMATED_VERSION\u003d4.1.6", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" ++ ], ++ "stlLibraryFile": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_stderr_reanimated.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_stderr_reanimated.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_stdout_reanimated.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_stdout_reanimated.txt +new file mode 100644 +index 0000000..28b9199 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_stdout_reanimated.txt +@@ -0,0 +1,74 @@ ++ninja: Entering directory `/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a' ++[0/2] Re-checking globbed directories... ++[1/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o ++[2/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o ++[3/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o ++[4/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o ++[5/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o ++[6/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o ++[7/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o ++[8/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o ++[9/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o ++[10/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o ++[11/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o ++[12/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o ++[13/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o ++[14/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o ++[15/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o ++[16/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o ++[17/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o ++[18/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o ++[19/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o ++[20/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o ++[21/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o ++[22/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o ++[23/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o ++[24/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o ++[25/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o ++[26/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o ++[27/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o ++[28/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o ++[29/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o ++[30/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o ++[31/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o ++[32/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o ++[33/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o ++[34/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o ++[35/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o ++[36/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o ++[37/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o ++[38/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o ++[39/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o ++[40/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o ++[41/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o ++[42/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o ++[43/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o ++[44/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o ++[45/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o ++[46/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o ++[47/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o ++[48/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o ++[49/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o ++[50/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o ++[51/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o ++[52/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o ++[53/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o ++[54/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o ++[55/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o ++[56/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o ++[57/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o ++[58/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o ++[59/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o ++[60/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o ++[61/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o ++[62/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o ++[63/72] Building CXX object CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o ++[64/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o ++[65/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o ++[66/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o ++[67/72] Building CXX object CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o ++[68/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o ++[69/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o ++[70/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o ++[71/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o ++[72/72] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_command +new file mode 100755 +index 0000000..06995c2 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_command +@@ -0,0 +1,28 @@ ++/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \ ++ -DCMAKE_SYSTEM_NAME=Android \ ++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ ++ -DCMAKE_SYSTEM_VERSION=24 \ ++ -DANDROID_PLATFORM=android-24 \ ++ -DANDROID_ABI=arm64-v8a \ ++ -DCMAKE_ANDROID_ARCH_ABI=arm64-v8a \ ++ -DANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab \ ++ -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a \ ++ -GNinja \ ++ -DANDROID_STL=c++_shared \ ++ -DREACT_NATIVE_MINOR_VERSION=81 \ ++ -DANDROID_TOOLCHAIN=clang \ ++ -DREACT_NATIVE_DIR=/Users/james/GitHub/Wallet/node_modules/react-native \ ++ -DREACT_NATIVE_WORKLETS_DIR=/Users/james/GitHub/Wallet/node_modules/react-native-worklets \ ++ -DIS_REANIMATED_EXAMPLE_APP=false \ ++ -DREANIMATED_PROFILING=false \ ++ -DREANIMATED_VERSION=4.1.6 \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON \ ++ -DREANIMATED_FEATURE_FLAGS=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_stdout.txt +new file mode 100644 +index 0000000..40e3e2c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_stdout.txt +@@ -0,0 +1,3 @@ ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/generate_cxx_metadata_121_timing.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/generate_cxx_metadata_121_timing.txt +new file mode 100644 +index 0000000..6f02e65 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/generate_cxx_metadata_121_timing.txt +@@ -0,0 +1,14 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ [gap of 24ms] ++ exec-prefab 4219ms ++ [gap of 14ms] ++ generate-prefab-packages completed in 4257ms ++ execute-generate-process ++ exec-configure 518ms ++ [gap of 118ms] ++ execute-generate-process completed in 637ms ++ [gap of 24ms] ++generate_cxx_metadata completed in 4926ms ++ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/metadata_generation_record.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/metadata_generation_record.json +new file mode 100644 +index 0000000..e98c2e6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/metadata_generation_record.json +@@ -0,0 +1,249 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: arm64-v8a", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "rebuilding JSON /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json due to:", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "- a file changed", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": " - /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/prefab_config.json (LAST_MODIFIED_CHANGED)", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home/bin/java \\\n --class-path \\\n /Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \\\n com.google.prefab.cli.AppKt \\\n --build-system \\\n cmake \\\n --platform \\\n android \\\n --abi \\\n arm64-v8a \\\n --os-version \\\n 24 \\\n --stl \\\n c++_shared \\\n --ndk-version \\\n 27 \\\n --output \\\n /var/folders/rv/cv83s_992xgbp4hp34l2mdn40000gp/T/agp-prefab-staging16231224587508010234/staged-cli-output \\\n /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab \\\n /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23 \\\n /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab\n", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "keeping json folder \u0027/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a\u0027 but regenerating project", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "executing cmake /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003darm64-v8a \\\n -DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a \\\n -DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab \\\n -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d81 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native \\\n -DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_PROFILING\u003dfalse \\\n -DREANIMATED_VERSION\u003d4.1.6 \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\n", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003darm64-v8a \\\n -DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a \\\n -DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab \\\n -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d81 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native \\\n -DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_PROFILING\u003dfalse \\\n -DREANIMATED_VERSION\u003d4.1.6 \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\n", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Exiting generation of /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json.bin normally", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "done executing cmake", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libjsi.so in incremental regenerate", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libfbjni.so in incremental regenerate", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libworklets.so in incremental regenerate", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libc++_shared.so in incremental regenerate", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreactnative.so in incremental regenerate", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "hard linked /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json to /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON generation completed without problems", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ } ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_command +new file mode 100755 +index 0000000..896cb14 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_command +@@ -0,0 +1,21 @@ ++/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \ ++ com.google.prefab.cli.AppKt \ ++ --build-system \ ++ cmake \ ++ --platform \ ++ android \ ++ --abi \ ++ arm64-v8a \ ++ --os-version \ ++ 24 \ ++ --stl \ ++ c++_shared \ ++ --ndk-version \ ++ 27 \ ++ --output \ ++ /var/folders/rv/cv83s_992xgbp4hp34l2mdn40000gp/T/agp-prefab-staging16231224587508010234/staged-cli-output \ ++ /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab \ ++ /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23 \ ++ /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_command_reanimated b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_command_reanimated +new file mode 100755 +index 0000000..4795009 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_command_reanimated +@@ -0,0 +1,4 @@ ++/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 \ ++ reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_model.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_model.json +new file mode 100644 +index 0000000..77007ed +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_model.json +@@ -0,0 +1,229 @@ ++{ ++ "info": { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "soFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64", ++ "soRepublishFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DANDROID_STL\u003dc++_shared", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d81", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native", ++ "-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets", ++ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", ++ "-DREANIMATED_PROFILING\u003dfalse", ++ "-DREANIMATED_VERSION\u003d4.1.6", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "arm64-v8a", ++ "x86_64" ++ ], ++ "buildTargetSet": [ ++ "reanimated" ++ ], ++ "implicitBuildTargetSet": [ ++ "reanimated" ++ ], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx", ++ "intermediatesBaseFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates", ++ "intermediatesFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx", ++ "gradleModulePathName": ":react-native-reanimated", ++ "moduleRootFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android", ++ "moduleBuildFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build.gradle", ++ "makeFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/james/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/james/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkVersion": "27.1.12297006", ++ "ndkSupportedAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "riscv64", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultStl": "LIBCXX_STATIC", ++ "ndkMetaPlatforms": { ++ "min": 21, ++ "max": 35, ++ "aliases": { ++ "20": 19, ++ "25": 24, ++ "J": 16, ++ "J-MR1": 17, ++ "J-MR2": 18, ++ "K": 19, ++ "L": 21, ++ "L-MR1": 22, ++ "M": 23, ++ "N": 24, ++ "N-MR1": 24, ++ "O": 26, ++ "O-MR1": 27, ++ "P": 28, ++ "Q": 29, ++ "R": 30, ++ "S": 31, ++ "Sv2": 32, ++ "Tiramisu": 33, ++ "UpsideDownCake": 34, ++ "VanillaIceCream": 35 ++ } ++ }, ++ "ndkMetaAbiList": [ ++ { ++ "name": "armeabi-v7a", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm", ++ "triple": "arm-linux-androideabi", ++ "llvmTriple": "armv7-none-linux-androideabi" ++ }, ++ { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ { ++ "name": "riscv64", ++ "bitness": 64, ++ "isDefault": false, ++ "isDeprecated": false, ++ "architecture": "riscv64", ++ "triple": "riscv64-linux-android", ++ "llvmTriple": "riscv64-none-linux-android" ++ }, ++ { ++ "name": "x86", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86", ++ "triple": "i686-linux-android", ++ "llvmTriple": "i686-none-linux-android" ++ }, ++ { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ } ++ ], ++ "cmakeToolchainFile": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cmakeVersionFromDsl": "3.22.1" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "arm64-v8a": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "x86_64": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" ++ }, ++ "LIBCXX_STATIC": {}, ++ "NONE": {}, ++ "SYSTEM": {} ++ }, ++ "project": { ++ "rootBuildGradleFolder": "/Users/james/GitHub/Wallet/android", ++ "sdkFolder": "/Users/james/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab", ++ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [ ++ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" ++ ], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "2x4556162h3l216i6z4i105l5b286r1a1y6570e3w2f2a231g72632v1m205d1z", ++ "fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.11.0.\n# - $NDK is the path to NDK 27.1.12297006.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DREACT_NATIVE_MINOR_VERSION\u003d81\n-DANDROID_TOOLCHAIN\u003dclang\n-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native\n-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets\n-DIS_REANIMATED_EXAMPLE_APP\u003dfalse\n-DREANIMATED_PROFILING\u003dfalse\n-DREANIMATED_VERSION\u003d4.1.6\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON\n-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]", ++ "configurationArguments": [ ++ "-H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android", ++ "-DCMAKE_SYSTEM_NAME\u003dAndroid", ++ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", ++ "-DCMAKE_SYSTEM_VERSION\u003d24", ++ "-DANDROID_PLATFORM\u003dandroid-24", ++ "-DANDROID_ABI\u003dx86_64", ++ "-DCMAKE_ANDROID_ARCH_ABI\u003dx86_64", ++ "-DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab", ++ "-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", ++ "-GNinja", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d81", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native", ++ "-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets", ++ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", ++ "-DREANIMATED_PROFILING\u003dfalse", ++ "-DREANIMATED_VERSION\u003d4.1.6", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" ++ ], ++ "stlLibraryFile": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_stderr_reanimated.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_stderr_reanimated.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_stdout_reanimated.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_stdout_reanimated.txt +new file mode 100644 +index 0000000..1e6da02 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_stdout_reanimated.txt +@@ -0,0 +1,74 @@ ++ninja: Entering directory `/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64' ++[0/2] Re-checking globbed directories... ++[1/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o ++[2/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o ++[3/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o ++[4/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o ++[5/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o ++[6/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o ++[7/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o ++[8/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o ++[9/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o ++[10/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o ++[11/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o ++[12/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o ++[13/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o ++[14/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o ++[15/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o ++[16/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o ++[17/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o ++[18/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o ++[19/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o ++[20/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o ++[21/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o ++[22/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o ++[23/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o ++[24/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o ++[25/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o ++[26/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o ++[27/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o ++[28/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o ++[29/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o ++[30/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o ++[31/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o ++[32/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o ++[33/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o ++[34/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o ++[35/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o ++[36/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o ++[37/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o ++[38/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o ++[39/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o ++[40/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o ++[41/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o ++[42/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o ++[43/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o ++[44/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o ++[45/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o ++[46/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o ++[47/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o ++[48/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o ++[49/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o ++[50/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o ++[51/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o ++[52/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o ++[53/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o ++[54/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o ++[55/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o ++[56/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o ++[57/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o ++[58/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o ++[59/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o ++[60/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o ++[61/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o ++[62/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o ++[63/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o ++[64/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o ++[65/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o ++[66/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o ++[67/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o ++[68/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o ++[69/72] Building CXX object CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o ++[70/72] Building CXX object CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o ++[71/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o ++[72/72] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_command +new file mode 100755 +index 0000000..519e3d6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_command +@@ -0,0 +1,28 @@ ++/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \ ++ -DCMAKE_SYSTEM_NAME=Android \ ++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ ++ -DCMAKE_SYSTEM_VERSION=24 \ ++ -DANDROID_PLATFORM=android-24 \ ++ -DANDROID_ABI=x86_64 \ ++ -DCMAKE_ANDROID_ARCH_ABI=x86_64 \ ++ -DANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab \ ++ -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 \ ++ -GNinja \ ++ -DANDROID_STL=c++_shared \ ++ -DREACT_NATIVE_MINOR_VERSION=81 \ ++ -DANDROID_TOOLCHAIN=clang \ ++ -DREACT_NATIVE_DIR=/Users/james/GitHub/Wallet/node_modules/react-native \ ++ -DREACT_NATIVE_WORKLETS_DIR=/Users/james/GitHub/Wallet/node_modules/react-native-worklets \ ++ -DIS_REANIMATED_EXAMPLE_APP=false \ ++ -DREANIMATED_PROFILING=false \ ++ -DREANIMATED_VERSION=4.1.6 \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON \ ++ -DREANIMATED_FEATURE_FLAGS=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_stdout.txt +new file mode 100644 +index 0000000..d6058e0 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_stdout.txt +@@ -0,0 +1,3 @@ ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/generate_cxx_metadata_121_timing.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/generate_cxx_metadata_121_timing.txt +new file mode 100644 +index 0000000..55d0c5c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/generate_cxx_metadata_121_timing.txt +@@ -0,0 +1,15 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ create-invalidation-state 127ms ++ generate-prefab-packages ++ [gap of 23ms] ++ exec-prefab 4002ms ++ [gap of 13ms] ++ generate-prefab-packages completed in 4038ms ++ execute-generate-process ++ exec-configure 607ms ++ [gap of 206ms] ++ execute-generate-process completed in 813ms ++ [gap of 15ms] ++generate_cxx_metadata completed in 5001ms ++ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/metadata_generation_record.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/metadata_generation_record.json +new file mode 100644 +index 0000000..618c51c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/metadata_generation_record.json +@@ -0,0 +1,249 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: x86_64", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "rebuilding JSON /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json due to:", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "- a file changed", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": " - /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/prefab_config.json (LAST_MODIFIED_CHANGED)", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home/bin/java \\\n --class-path \\\n /Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \\\n com.google.prefab.cli.AppKt \\\n --build-system \\\n cmake \\\n --platform \\\n android \\\n --abi \\\n x86_64 \\\n --os-version \\\n 24 \\\n --stl \\\n c++_shared \\\n --ndk-version \\\n 27 \\\n --output \\\n /var/folders/rv/cv83s_992xgbp4hp34l2mdn40000gp/T/agp-prefab-staging9028056130761516402/staged-cli-output \\\n /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab \\\n /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i \\\n /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab\n", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "keeping json folder \u0027/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64\u0027 but regenerating project", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "executing cmake /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003dx86_64 \\\n -DCMAKE_ANDROID_ARCH_ABI\u003dx86_64 \\\n -DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab \\\n -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d81 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native \\\n -DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_PROFILING\u003dfalse \\\n -DREANIMATED_VERSION\u003d4.1.6 \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\n", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003dx86_64 \\\n -DCMAKE_ANDROID_ARCH_ABI\u003dx86_64 \\\n -DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab \\\n -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d81 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native \\\n -DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_PROFILING\u003dfalse \\\n -DREANIMATED_VERSION\u003d4.1.6 \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\n", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Exiting generation of /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json.bin normally", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "done executing cmake", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libjsi.so in incremental regenerate", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libfbjni.so in incremental regenerate", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libworklets.so in incremental regenerate", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libc++_shared.so in incremental regenerate", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreactnative.so in incremental regenerate", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "hard linked /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json to /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON generation completed without problems", ++ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ } ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_command +new file mode 100755 +index 0000000..2ea01ee +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_command +@@ -0,0 +1,21 @@ ++/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \ ++ com.google.prefab.cli.AppKt \ ++ --build-system \ ++ cmake \ ++ --platform \ ++ android \ ++ --abi \ ++ x86_64 \ ++ --os-version \ ++ 24 \ ++ --stl \ ++ c++_shared \ ++ --ndk-version \ ++ 27 \ ++ --output \ ++ /var/folders/rv/cv83s_992xgbp4hp34l2mdn40000gp/T/agp-prefab-staging9028056130761516402/staged-cli-output \ ++ /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab \ ++ /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i \ ++ /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libc++_shared.so +new file mode 100755 +index 0000000..2c72c65 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libfbjni.so +new file mode 100644 +index 0000000..aadd325 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libfbjni.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libjsi.so +new file mode 100644 +index 0000000..52c310d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libjsi.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreactnative.so +new file mode 100644 +index 0000000..11165ed +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreactnative.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so +new file mode 100755 +index 0000000..bd83cd4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libworklets.so +new file mode 100755 +index 0000000..c8d0c8e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libc++_shared.so +new file mode 100755 +index 0000000..8e3a868 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libc++_shared.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libfbjni.so +new file mode 100644 +index 0000000..68ecbda +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libfbjni.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libjsi.so +new file mode 100644 +index 0000000..1372005 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libjsi.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreactnative.so +new file mode 100644 +index 0000000..9f300cf +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreactnative.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so +new file mode 100755 +index 0000000..81f39dc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libworklets.so +new file mode 100755 +index 0000000..5b9b9c7 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/include/placeholder.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/libs/android.x86_64/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/libs/android.x86_64/abi.json +new file mode 100644 +index 0000000..c4d68de +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/libs/android.x86_64/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86_64", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/module.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab.json +new file mode 100644 +index 0000000..534d606 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab.json +@@ -0,0 +1,6 @@ ++{ ++ "name": "react-native-worklets", ++ "schema_version": 2, ++ "dependencies": [], ++ "version": "0.5.1" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab_publication.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab_publication.json +new file mode 100644 +index 0000000..b3b9b2e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab_publication.json +@@ -0,0 +1,27 @@ ++{ ++ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":react-native-worklets", ++ "packageInfo": { ++ "packageName": "react-native-worklets", ++ "packageVersion": "0.5.1", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "worklets", ++ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/prefab-headers/worklets", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86_64", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cxx/Debug/3t3jm3v4/obj/x86_64/libworklets.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/.cxx/Debug/3t3jm3v4/x86_64/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/include/placeholder.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/libs/android.arm64-v8a/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/module.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab.json +new file mode 100644 +index 0000000..534d606 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab.json +@@ -0,0 +1,6 @@ ++{ ++ "name": "react-native-worklets", ++ "schema_version": 2, ++ "dependencies": [], ++ "version": "0.5.1" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab_publication.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab_publication.json +new file mode 100644 +index 0000000..1d1bea8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab_publication.json +@@ -0,0 +1,27 @@ ++{ ++ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":react-native-worklets", ++ "packageInfo": { ++ "packageName": "react-native-worklets", ++ "packageVersion": "0.5.1", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "worklets", ++ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/prefab-headers/worklets", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "arm64-v8a", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cxx/Debug/3t3jm3v4/obj/arm64-v8a/libworklets.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/.cxx/Debug/3t3jm3v4/arm64-v8a/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/modules/worklets/include/placeholder.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/modules/worklets/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/modules/worklets/module.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/modules/worklets/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/modules/worklets/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab.json +new file mode 100644 +index 0000000..534d606 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab.json +@@ -0,0 +1,6 @@ ++{ ++ "name": "react-native-worklets", ++ "schema_version": 2, ++ "dependencies": [], ++ "version": "0.5.1" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab_publication.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab_publication.json +new file mode 100644 +index 0000000..85d7422 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab_publication.json +@@ -0,0 +1,18 @@ ++{ ++ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":react-native-worklets", ++ "packageInfo": { ++ "packageName": "react-native-worklets", ++ "packageVersion": "0.5.1", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "worklets", ++ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/prefab-headers/worklets", ++ "moduleExportLibraries": [], ++ "abis": [] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..322365e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Mon Jun 08 21:45:45 BST 2026 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..5a27758 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugAssets/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugAssets/merger.xml +new file mode 100644 +index 0000000..9cdfdb8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..0223775 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..beb569b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/common/GestureHandlerStateManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/common/GestureHandlerStateManager.class +new file mode 100644 +index 0000000..25bb987 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/common/GestureHandlerStateManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BuildConfig.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BuildConfig.class +new file mode 100644 +index 0000000..565cbe1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BuildConfig.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent$1.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent$1.class +new file mode 100644 +index 0000000..318a4b8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent$1.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent.class +new file mode 100644 +index 0000000..f74e033 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/DevMenuUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/DevMenuUtils.class +new file mode 100644 +index 0000000..fb64721 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/DevMenuUtils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/MapUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/MapUtils.class +new file mode 100644 +index 0000000..dfe568b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/MapUtils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy.class +new file mode 100644 +index 0000000..d829c8c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeReanimatedModuleSpec.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeReanimatedModuleSpec.class +new file mode 100644 +index 0000000..df6a418 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeReanimatedModuleSpec.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$1.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$1.class +new file mode 100644 +index 0000000..bd42cf1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$1.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class +new file mode 100644 +index 0000000..872bf6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager.class +new file mode 100644 +index 0000000..66d57da +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule.class +new file mode 100644 +index 0000000..a4a0509 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedPackage.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedPackage.class +new file mode 100644 +index 0000000..46d72d1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedPackage.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils$1.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils$1.class +new file mode 100644 +index 0000000..9604ea7 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils$1.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils.class +new file mode 100644 +index 0000000..da9e1ee +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/Keyboard.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/Keyboard.class +new file mode 100644 +index 0000000..bb4604d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/Keyboard.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class +new file mode 100644 +index 0000000..8fdb012 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class +new file mode 100644 +index 0000000..bae195e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardState.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardState.class +new file mode 100644 +index 0000000..4819270 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardState.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class +new file mode 100644 +index 0000000..367c1a6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class +new file mode 100644 +index 0000000..67b0338 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class +new file mode 100644 +index 0000000..72ef476 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class +new file mode 100644 +index 0000000..d45cd1a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/EventHandler.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/EventHandler.class +new file mode 100644 +index 0000000..eb17226 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/EventHandler.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class +new file mode 100644 +index 0000000..dd47f6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/SensorSetter.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/SensorSetter.class +new file mode 100644 +index 0000000..7aefac3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/SensorSetter.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensor.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensor.class +new file mode 100644 +index 0000000..34ae9ab +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensor.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class +new file mode 100644 +index 0000000..987353f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class +new file mode 100644 +index 0000000..3fdb42f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorType.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorType.class +new file mode 100644 +index 0000000..5faa711 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorType.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libreanimated.so +new file mode 100644 +index 0000000..bd83cd4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libworklets.so +new file mode 100644 +index 0000000..c8d0c8e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libreanimated.so +new file mode 100644 +index 0000000..81f39dc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libworklets.so +new file mode 100644 +index 0000000..5b9b9c7 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-reanimated/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +new file mode 100644 +index 0000000..78ac5b8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +@@ -0,0 +1,2 @@ ++R_DEF: Internal format may change without notice ++local +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-reanimated/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..1fd95ff +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +@@ -0,0 +1,7 @@ ++1 ++2 ++4 ++5 ++6 ++7 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-reanimated/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..ed5d55a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libreanimated.so +new file mode 100644 +index 0000000..bd83cd4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libworklets.so +new file mode 100644 +index 0000000..c8d0c8e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libreanimated.so +new file mode 100644 +index 0000000..81f39dc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libworklets.so +new file mode 100644 +index 0000000..5b9b9c7 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-reanimated/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +@@ -0,0 +1 @@ ++[] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-reanimated/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/AnimatedSensor/AnimatedSensorModule.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/AnimatedSensor/AnimatedSensorModule.h +new file mode 100644 +index 0000000..f813079 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/AnimatedSensor/AnimatedSensorModule.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace worklets; ++ ++enum SensorType { ++ ACCELEROMETER = 1, ++ GYROSCOPE = 2, ++ GRAVITY = 3, ++ MAGNETIC_FIELD = 4, ++ ROTATION_VECTOR = 5, ++}; ++ ++class AnimatedSensorModule { ++ std::unordered_set sensorsIds_; ++ RegisterSensorFunction platformRegisterSensorFunction_; ++ UnregisterSensorFunction platformUnregisterSensorFunction_; ++ ++ public: ++ AnimatedSensorModule( ++ const PlatformDepMethodsHolder &platformDepMethodsHolder); ++ ~AnimatedSensorModule(); ++ ++ jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const std::shared_ptr &uiWorkletRuntime, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer); ++ void unregisterSensor(const jsi::Value &sensorId); ++ void unregisterAllSensors(); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/InterpolatorRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/InterpolatorRegistry.h +new file mode 100644 +index 0000000..5d841ba +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/InterpolatorRegistry.h +@@ -0,0 +1,20 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++using ComponentInterpolatorsMap = ++ std::unordered_map; ++ ++const InterpolatorFactoriesRecord &getComponentInterpolators( ++ const std::string &componentName); ++ ++void registerComponentInterpolators( ++ const std::string &componentName, ++ const InterpolatorFactoriesRecord &interpolators); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/definitions.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/definitions.h +new file mode 100644 +index 0000000..d043127 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/definitions.h +@@ -0,0 +1,23 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++ ++using PropertyNames = std::vector; ++using PropertyPath = std::vector; ++/** ++ * If nullopt - all style properties can trigger transition ++ * If empty vector - no style property can trigger transition ++ * Otherwise - only specified style properties can trigger transition ++ */ ++using TransitionProperties = std::optional; ++ ++using EasingFunction = std::function; ++using ColorChannels = std::array; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/Quaternion.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/Quaternion.h +new file mode 100644 +index 0000000..67336b8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/Quaternion.h +@@ -0,0 +1,23 @@ ++#pragma once ++ ++#ifndef NDEBUG ++#include ++#endif // NDEBUG ++ ++namespace reanimated::css { ++ ++struct Quaternion { ++ double x, y, z, w; ++ ++ bool operator==(const Quaternion &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const Quaternion &quaternion); ++#endif // NDEBUG ++ ++ Quaternion interpolate(double progress, const Quaternion &other) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix.h +new file mode 100644 +index 0000000..805bc8a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix.h +@@ -0,0 +1,147 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class TransformMatrix { ++ public: ++ virtual ~TransformMatrix() = default; ++ ++ virtual double determinant() const = 0; ++ ++ virtual double &operator[](size_t index) = 0; ++ virtual const double &operator[](size_t index) const = 0; ++ ++ virtual size_t getDimension() const = 0; ++ ++ virtual std::string toString() const = 0; ++ virtual folly::dynamic toDynamic() const = 0; ++}; ++ ++template ++class TransformMatrixBase : public TransformMatrix { ++ public: ++ static constexpr size_t SIZE = TDimension * TDimension; ++ using MatrixArray = std::array; ++ ++ explicit TransformMatrixBase(MatrixArray matrix) ++ : matrix_(std::move(matrix)) {} ++ ++ explicit TransformMatrixBase(jsi::Runtime &rt, const jsi::Value &value) { ++ const auto array = value.asObject(rt).asArray(rt); ++ if (array.size(rt) != SIZE) { ++ throw std::invalid_argument( ++ "[Reanimated] Matrix array should have " + std::to_string(SIZE) + ++ " elements"); ++ } ++ ++ for (size_t i = 0; i < SIZE; ++i) { ++ matrix_[i] = array.getValueAtIndex(rt, i).asNumber(); ++ } ++ } ++ ++ explicit TransformMatrixBase(const folly::dynamic &array) { ++ if (!array.isArray() || array.size() != SIZE) { ++ throw std::invalid_argument( ++ "[Reanimated] Matrix array should have " + std::to_string(SIZE) + ++ " elements"); ++ } ++ ++ for (size_t i = 0; i < SIZE; ++i) { ++ matrix_[i] = array[i].asDouble(); ++ } ++ } ++ ++ virtual bool operator==(const TDerived &other) const = 0; ++ ++ double &operator[](size_t index) override { ++ return matrix_[index]; ++ } ++ ++ const double &operator[](size_t index) const override { ++ return matrix_[index]; ++ } ++ ++ TDerived operator*(const TDerived &rhs) const { ++ return TDerived(multiply(rhs)); ++ } ++ ++ TDerived &operator*=(const TDerived &rhs) { ++ matrix_ = multiply(rhs); ++ return static_cast(*this); ++ } ++ ++ std::string toString() const override { ++ std::string result = "["; ++ for (size_t i = 0; i < SIZE; ++i) { ++ result += std::to_string(matrix_[i]); ++ if (i < SIZE - 1) { ++ result += ", "; ++ } ++ } ++ result += "]"; ++ return result; ++ } ++ ++ folly::dynamic toDynamic() const override { ++ folly::dynamic result = folly::dynamic::array; ++ for (size_t i = 0; i < SIZE; ++i) { ++ result.push_back(matrix_[i]); ++ } ++ return result; ++ } ++ ++ size_t getDimension() const override { ++ return TDimension; ++ } ++ ++ bool isSingular() const { ++ return determinant() == 0; ++ } ++ ++ bool normalize() { ++ const auto last = matrix_[SIZE - 1]; ++ if (last == 0) { ++ return false; ++ } ++ if (last == 1) { ++ return true; ++ } ++ ++ for (size_t i = 0; i < SIZE; ++i) { ++ matrix_[i] /= last; ++ } ++ return true; ++ } ++ ++ void transpose() { ++ for (size_t i = 0; i < TDimension; ++i) { ++ for (size_t j = i + 1; j < TDimension; ++j) { ++ std::swap(matrix_[i * TDimension + j], matrix_[j * TDimension + i]); ++ } ++ } ++ } ++ ++ protected: ++ std::array matrix_; ++ ++ MatrixArray multiply(const TDerived &rhs) const { ++ std::array result{}; ++ for (size_t i = 0; i < TDimension; ++i) { ++ for (size_t j = 0; j < TDimension; ++j) { ++ for (size_t k = 0; k < TDimension; ++k) { ++ result[i * TDimension + j] += ++ matrix_[i * TDimension + k] * rhs[k * TDimension + j]; ++ } ++ } ++ } ++ return result; ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix2D.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix2D.h +new file mode 100644 +index 0000000..1dd9a66 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix2D.h +@@ -0,0 +1,58 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++namespace { ++static constexpr size_t MATRIX_2D_DIMENSION = 3; // 3x3 matrix ++} ++ ++class TransformMatrix2D ++ : public TransformMatrixBase { ++ public: ++ struct Decomposed { ++ Vector2D scale; ++ double skew; ++ double rotation; ++ Vector2D translation; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const Decomposed &decomposed); ++#endif // NDEBUG ++ ++ Decomposed interpolate(double progress, const Decomposed &other) const; ++ }; ++ ++ using TransformMatrixBase:: ++ TransformMatrixBase; ++ ++ static TransformMatrix2D Identity(); ++ ++ template ++ static TransformMatrix2D create(double value); ++ ++ bool operator==(const TransformMatrix2D &other) const override; ++ ++ double determinant() const override; ++ void translate2d(const Vector2D &translation); ++ void scale2d(const Vector2D &scale); ++ ++ std::optional decompose() const; ++ static TransformMatrix2D recompose(const Decomposed &decomposed); ++ ++ private: ++ Vector2D getTranslation() const; ++ static std::pair computeScaleAndSkew( ++ std::array &rows); ++ static double computeRotation(std::array &rows); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix3D.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix3D.h +new file mode 100644 +index 0000000..cd5d796 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix3D.h +@@ -0,0 +1,84 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++namespace { ++static constexpr size_t MATRIX_3D_DIMENSION = 4; // 4x4 matrix ++} ++ ++class TransformMatrix3D ++ : public TransformMatrixBase { ++ public: ++ struct Decomposed { ++ Vector3D scale; ++ Vector3D skew; ++ Quaternion quaternion; ++ Vector3D translation; ++ Vector4D perspective; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const Decomposed &decomposed); ++#endif // NDEBUG ++ ++ Decomposed interpolate(double progress, const Decomposed &other) const; ++ }; ++ ++ using TransformMatrixBase:: ++ TransformMatrixBase; ++ ++ static TransformMatrix3D Identity(); ++ ++ template ++ static TransformMatrix3D create(double value); ++ ++ bool operator==(const TransformMatrix3D &other) const override; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const TransformMatrix3D &matrix); ++#endif // NDEBUG ++ ++ double determinant() const override; ++ void adjugate(); ++ bool invert(); ++ void translate3d(const Vector3D &translation); ++ void scale3d(const Vector3D &scale); ++ ++ std::optional decompose() const; ++ static TransformMatrix3D recompose(const Decomposed &decomposed); ++ static TransformMatrix3D fromQuaternion(const Quaternion &q); ++ ++ private: ++ std::optional computePerspective() const; ++ ++ Vector3D getTranslation() const; ++ static std::pair computeScaleAndSkew( ++ std::array &rows); ++ static Quaternion computeQuaternion(std::array &columns); ++ ++ inline static double determinant3x3( ++ double a, ++ double b, ++ double c, ++ double d, ++ double e, ++ double f, ++ double g, ++ double h, ++ double i); ++}; ++ ++Vector4D operator*(const Vector4D &v, const TransformMatrix3D &m); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformOp.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformOp.h +new file mode 100644 +index 0000000..846b32e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformOp.h +@@ -0,0 +1,27 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated::css { ++ ++enum class TransformOp { ++ Perspective, ++ Rotate, ++ RotateX, ++ RotateY, ++ RotateZ, ++ Scale, ++ ScaleX, ++ ScaleY, ++ TranslateX, ++ TranslateY, ++ SkewX, ++ SkewY, ++ Matrix, ++}; ++ ++TransformOp getTransformOperationType(const std::string &property); ++ ++std::string getOperationNameFromType(const TransformOp type); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/vectors.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/vectors.h +new file mode 100644 +index 0000000..5d6a788 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/vectors.h +@@ -0,0 +1,77 @@ ++#pragma once ++ ++#include ++ ++#ifndef NDEBUG ++#include ++#endif // NDEBUG ++ ++namespace reanimated::css { ++ ++struct Vector2D { ++ std::array vec; ++ ++ Vector2D() : vec({0, 0}) {} ++ explicit Vector2D(double x, double y) : vec({x, y}) {} ++ explicit Vector2D(std::array vec) : vec(vec) {} ++ ++ double &operator[](size_t idx); ++ const double &operator[](size_t idx) const; ++ Vector2D &operator*=(double scalar); ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const Vector2D &vector); ++#endif // NDEBUG ++ ++ double length() const; ++ void scaleToLength(double targetLength); ++ void normalize(); ++ double dot(const Vector2D &other) const; ++ double cross(const Vector2D &other) const; ++ Vector2D addScaled(const Vector2D &other, double scale) const; ++ Vector2D interpolate(double progress, const Vector2D &other) const; ++}; ++ ++struct Vector3D { ++ std::array vec; ++ ++ Vector3D() : vec({0, 0, 0}) {} ++ explicit Vector3D(double x, double y, double z) : vec({x, y, z}) {} ++ explicit Vector3D(std::array vec) : vec(vec) {} ++ ++ double &operator[](size_t idx); ++ const double &operator[](size_t idx) const; ++ Vector3D &operator*=(double scalar); ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const Vector3D &vector); ++#endif // NDEBUG ++ ++ double length() const; ++ void scaleToLength(double targetLength); ++ void normalize(); ++ double dot(const Vector3D &other) const; ++ Vector3D cross(const Vector3D &other) const; ++ Vector3D addScaled(const Vector3D &other, double scale) const; ++ Vector3D interpolate(double progress, const Vector3D &other) const; ++}; ++ ++struct Vector4D { ++ std::array vec; ++ ++ Vector4D() : vec({0, 0, 0, 0}) {} ++ explicit Vector4D(double x, double y, double z, double w) ++ : vec({x, y, z, w}) {} ++ explicit Vector4D(std::array vec) : vec(vec) {} ++ ++ double &operator[](size_t idx); ++ const double &operator[](size_t idx) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const Vector4D &vector); ++#endif // NDEBUG ++ ++ Vector4D interpolate(double progress, const Vector4D &other) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSAngle.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSAngle.h +new file mode 100644 +index 0000000..5501c65 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSAngle.h +@@ -0,0 +1,38 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++struct CSSAngle : public CSSSimpleValue { ++ double value; ++ ++ CSSAngle(); ++ explicit CSSAngle(double value); ++ explicit CSSAngle(const std::string &rotationString); ++ explicit CSSAngle(const char *cstr); ++ explicit CSSAngle(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSAngle(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ CSSAngle interpolate(double progress, const CSSAngle &to) const override; ++ ++ bool operator==(const CSSAngle &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const CSSAngle &angleValue); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSBoolean.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSBoolean.h +new file mode 100644 +index 0000000..ea6a08b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSBoolean.h +@@ -0,0 +1,33 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++struct CSSBoolean : public CSSSimpleValue { ++ bool value; ++ ++ CSSBoolean(); ++ explicit CSSBoolean(bool value); ++ explicit CSSBoolean(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSBoolean(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ CSSBoolean interpolate(double progress, const CSSBoolean &to) const override; ++ ++ bool operator==(const CSSBoolean &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const CSSBoolean &boolValue); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSColor.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSColor.h +new file mode 100644 +index 0000000..b7c679f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSColor.h +@@ -0,0 +1,60 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++enum class ColorType { ++ Rgba, ++ Transparent, ++ CurrentColor, // for SVG ++}; ++ ++struct CSSColor : public CSSSimpleValue { ++ ColorChannels channels; ++ ColorType colorType; ++ ++ static const CSSColor Transparent; ++ ++ CSSColor(); ++ explicit CSSColor(ColorType colorType); ++ explicit CSSColor(int64_t numberValue); ++ explicit CSSColor(const std::string &colorString); ++ ++ explicit CSSColor(uint8_t r, uint8_t g, uint8_t b); ++ explicit CSSColor(uint8_t r, uint8_t g, uint8_t b, uint8_t a); ++ explicit CSSColor(const ColorChannels &colorChannels); ++ ++ explicit CSSColor(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSColor(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ CSSColor interpolate(double progress, const CSSColor &to) const override; ++ ++ static uint8_t interpolateChannel(uint8_t from, uint8_t to, double progress); ++ ++ bool operator==(const CSSColor &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const CSSColor &colorValue); ++#endif // NDEBUG ++ ++ private: ++ static bool isValidColorString(const std::string &colorString); ++}; ++ ++inline const CSSColor CSSColor::Transparent(ColorType::Transparent); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSDiscreteArray.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSDiscreteArray.h +new file mode 100644 +index 0000000..e5e1fc9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSDiscreteArray.h +@@ -0,0 +1,49 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++/* ++ * CSSDiscreteArray is used for array interpolation when arrays need to be ++ * treated as discrete values. Instead of interpolating between corresponding ++ * elements of two arrays, this type interpolates between entire arrays ++ * treated as single discrete values. ++ */ ++template ++struct CSSDiscreteArray : public CSSSimpleValue> { ++ static constexpr bool is_discrete_value = true; ++ ++ std::vector values; ++ ++ CSSDiscreteArray(); ++ explicit CSSDiscreteArray(const std::vector &values); ++ explicit CSSDiscreteArray(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSDiscreteArray(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ CSSDiscreteArray interpolate( ++ double progress, ++ const CSSDiscreteArray &other) const override; ++ ++ bool operator==(const CSSDiscreteArray &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const CSSDiscreteArray &arrayValue); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSKeyword.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSKeyword.h +new file mode 100644 +index 0000000..7e43a0c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSKeyword.h +@@ -0,0 +1,61 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++template ++class CSSKeywordBase : public CSSSimpleValue { ++ public: ++ static constexpr bool is_discrete_value = true; ++ ++ CSSKeywordBase() = default; ++ explicit CSSKeywordBase(const char *value); ++ explicit CSSKeywordBase(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSKeywordBase(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ ++ bool operator==(const CSSKeywordBase &other) const; ++ ++ protected: ++ std::string value; ++}; ++ ++struct CSSKeyword : public CSSKeywordBase { ++ using CSSKeywordBase::CSSKeywordBase; ++ using CSSKeywordBase::canConstruct; ++ ++ CSSKeyword interpolate(double progress, const CSSKeyword &to) const override; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const CSSKeyword &keywordValue); ++#endif // NDEBUG ++}; ++ ++struct CSSDisplay : public CSSKeywordBase { ++ using CSSKeywordBase::CSSKeywordBase; ++ using CSSKeywordBase::canConstruct; ++ ++ CSSDisplay interpolate(double progress, const CSSDisplay &to) const override; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const CSSDisplay &displayValue); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSLength.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSLength.h +new file mode 100644 +index 0000000..aa26fc8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSLength.h +@@ -0,0 +1,41 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++struct CSSLength : public CSSResolvableValue { ++ double value; ++ bool isRelative; ++ ++ CSSLength(); ++ explicit CSSLength(double value); ++ explicit CSSLength(double value, bool isRelative); ++ explicit CSSLength(const char *value); ++ explicit CSSLength(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSLength(const folly::dynamic &value); ++ ++ static bool canConstruct(const std::string &value); ++ static bool canConstruct(const char *value); ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ CSSLength interpolate( ++ double progress, ++ const CSSLength &to, ++ const CSSResolvableValueInterpolationContext &context) const override; ++ std::optional resolve( ++ const CSSResolvableValueInterpolationContext &context) const override; ++ ++ bool operator==(const CSSLength &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const CSSLength &dimension); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSNumber.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSNumber.h +new file mode 100644 +index 0000000..902d421 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSNumber.h +@@ -0,0 +1,71 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++template ++struct CSSNumberBase : public CSSSimpleValue { ++ TValue value; ++ ++ CSSNumberBase(); ++ explicit CSSNumberBase(TValue value); ++ explicit CSSNumberBase(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSNumberBase(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ TDerived interpolate(double progress, const TDerived &other) const override; ++ ++ bool operator==(const CSSNumberBase &other) const; ++}; ++ ++#ifndef NDEBUG ++ ++template ++std::ostream &operator<<( ++ std::ostream &os, ++ const CSSNumberBase &numberValue) { ++ os << "CSSNumberBase(" << numberValue.toString() << ")"; ++ return os; ++} ++ ++#endif // NDEBUG ++ ++struct CSSDouble : public CSSNumberBase { ++ // Inherit all constructors from the base class ++ using CSSNumberBase::CSSNumberBase; ++}; ++struct CSSInteger : public CSSNumberBase { ++ // Inherit all constructors from the base class ++ using CSSNumberBase::CSSNumberBase; ++ ++ CSSInteger interpolate(double progress, const CSSInteger &other) ++ const override; ++}; ++ ++#ifdef ANDROID ++ ++// For some reason Android crashes when blurRadius is smaller than 1 so we use a ++// custom value that will never be smaller than 1 ++ ++struct CSSShadowRadiusAndroid ++ : public CSSNumberBase { ++ CSSShadowRadiusAndroid(); ++ explicit CSSShadowRadiusAndroid(double value); ++ explicit CSSShadowRadiusAndroid(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSShadowRadiusAndroid(const folly::dynamic &value); ++}; ++ ++#endif ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValue.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValue.h +new file mode 100644 +index 0000000..923997f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValue.h +@@ -0,0 +1,79 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++ ++struct ValueInterpolatorUpdateContext { ++ const std::shared_ptr &node; ++}; ++ ++enum class RelativeTo { ++ Parent, ++ Self, ++}; ++ ++struct CSSResolvableValueInterpolationContext { ++ const std::shared_ptr &node; ++ const std::shared_ptr &viewStylesRepository; ++ const std::string &relativeProperty; ++ const RelativeTo relativeTo; ++}; ++ ++struct CSSValue { ++ // This field should be overridden in discrete value types ++ static constexpr bool is_discrete_value = false; ++ ++ virtual ~CSSValue() = default; ++ ++ virtual folly::dynamic toDynamic() const = 0; ++ virtual std::string toString() const = 0; ++}; ++ ++// Base for leaf values that can be interpolated without resolution ++template ++struct CSSSimpleValue : public CSSValue { ++ static constexpr bool is_resolvable_value = false; ++ ++ virtual TDerived interpolate(double progress, const TDerived &to) const = 0; ++}; ++ ++// Base for leaf values that need resolution before interpolation ++template ++struct CSSResolvableValue : public CSSValue { ++ static constexpr bool is_resolvable_value = true; ++ ++ virtual TDerived interpolate( ++ double progress, ++ const TDerived &to, ++ const CSSResolvableValueInterpolationContext &context) const = 0; ++ virtual std::optional resolve( ++ const CSSResolvableValueInterpolationContext &context) const = 0; ++}; ++ ++// Checks if a type is a resolvable value that needs resolution before ++// interpolation ++template ++concept Resolvable = requires { ++ { TCSSValue::is_resolvable_value } -> std::convertible_to; ++ requires TCSSValue::is_resolvable_value == true; ++}; ++ ++// Checks if a type is a discrete value ++template ++concept Discrete = requires { ++ { TCSSValue::is_discrete_value } -> std::convertible_to; ++ requires TCSSValue::is_discrete_value == true; ++}; ++ ++// Check if a type is derived from CSSValue ++template ++concept CSSValueDerived = std::is_base_of_v; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValueVariant.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValueVariant.h +new file mode 100644 +index 0000000..602d6c5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValueVariant.h +@@ -0,0 +1,123 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++/** ++ * Macro to check if two lambda parameters have the same reference-removed type. ++ * ++ * Usage: ++ * REA_IF_SAME_TYPE(lhs, rhs) { ++ * // same-type block ++ * } else { ++ * // mismatch block ++ * } ++ */ ++#define REA_IF_SAME_TYPE(lhs, rhs) \ ++ using L = std::remove_reference_t; \ ++ using R = std::remove_reference_t; \ ++ if constexpr (std::is_same_v) // NOLINT(readability/braces) ++ ++// Checks whether a type has canConstruct(...) for a generic value ++template ++concept ValueConstructibleCSSValue = requires(TValue &&value) { ++ { ++ TCSSValue::canConstruct(std::forward(value)) ++ } -> std::same_as; ++}; // NOLINT(readability/braces) ++ ++// Checks whether a type can be constructed from a jsi::Value ++template ++concept JSIConstructibleCSSValue = ++ requires(jsi::Runtime &rt, const jsi::Value &value) { ++ { TCSSValue::canConstruct(rt, value) } -> std::same_as; ++ { TCSSValue(rt, value) } -> std::same_as; ++ }; // NOLINT(readability/braces) ++ ++// Checks whether a type can be constructed from a folly::dynamic ++template ++concept DynamicConstructibleCSSValue = requires(const folly::dynamic &value) { ++ { TCSSValue::canConstruct(value) } -> std::same_as; ++ { TCSSValue(value) } -> std::same_as; ++}; // NOLINT(readability/braces) ++ ++/** ++ * CSSValueVariant ++ * ++ * A std::variant-based container for multiple CSSValue-derived types. ++ */ ++template ++class CSSValueVariant final : public CSSValue { ++ static_assert( ++ (CSSValueDerived && ...), ++ "CSSValueVariant accepts only CSSValue-derived types"); ++ static_assert( ++ (JSIConstructibleCSSValue && ...), ++ "CSSValueVariant accepts only types that can be constructed from a jsi::Value"); ++ static_assert( ++ (DynamicConstructibleCSSValue && ...), ++ "CSSValueVariant accepts only types that can be constructed from a folly::dynamic"); ++ ++ public: ++ CSSValueVariant() = default; ++ ++ /** ++ * Construct from std::variant storage directly ++ */ ++ explicit CSSValueVariant(std::variant &&storage); ++ ++ /** ++ * Construct from jsi::Value if it matches any AllowedType's constructor ++ * (chooses the first one that matches) ++ */ ++ explicit CSSValueVariant(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ ++ /** ++ * Construct from folly::dynamic if it matches any AllowedType's constructor ++ * (chooses the first one that matches) ++ */ ++ explicit CSSValueVariant(const folly::dynamic &value); ++ ++ bool operator==(const CSSValueVariant &other) const; ++ bool operator==(const CSSValue &other) const; ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ ++ /** ++ * Interpolate (non-resolvable) ++ */ ++ CSSValueVariant interpolate( ++ const double progress, ++ const CSSValueVariant &to, ++ const ValueInterpolatorUpdateContext &context) const; ++ ++ /** ++ * Interpolate (resolvable) ++ */ ++ CSSValueVariant interpolate( ++ const double progress, ++ const CSSValueVariant &to, ++ const CSSResolvableValueInterpolationContext &context) const; ++ ++ private: ++ std::variant storage_; ++ ++ CSSValueVariant fallbackInterpolate( ++ const double progress, ++ const CSSValueVariant &to) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSAnimationConfig.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSAnimationConfig.h +new file mode 100644 +index 0000000..1defb7b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSAnimationConfig.h +@@ -0,0 +1,53 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++enum class AnimationDirection { Normal, Reverse, Alternate, AlternateReverse }; ++enum class AnimationFillMode { None, Forwards, Backwards, Both }; ++enum class AnimationPlayState { Running, Paused }; ++ ++struct CSSAnimationSettings { ++ double duration; ++ EasingFunction easingFunction; ++ double delay; ++ double iterationCount; ++ AnimationDirection direction; ++ AnimationFillMode fillMode; ++ AnimationPlayState playState; ++}; ++ ++struct PartialCSSAnimationSettings { ++ std::optional duration; ++ std::optional easingFunction; ++ std::optional delay; ++ std::optional iterationCount; ++ std::optional direction; ++ std::optional fillMode; ++ std::optional playState; ++}; ++ ++using CSSAnimationSettingsMap = ++ std::unordered_map; ++using CSSAnimationSettingsUpdatesMap = ++ std::unordered_map; ++ ++struct CSSAnimationUpdates { ++ std::optional> animationNames; ++ CSSAnimationSettingsMap newAnimationSettings; ++ CSSAnimationSettingsUpdatesMap settingsUpdates; ++}; ++ ++CSSAnimationUpdates parseCSSAnimationUpdates( ++ jsi::Runtime &rt, ++ const jsi::Value &config); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSKeyframesConfig.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSKeyframesConfig.h +new file mode 100644 +index 0000000..3ba8880 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSKeyframesConfig.h +@@ -0,0 +1,26 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using KeyframeEasingFunctions = std::unordered_map; ++ ++struct CSSKeyframesConfig { ++ std::shared_ptr styleInterpolator; ++ std::shared_ptr keyframeEasingFunctions; ++}; ++ ++CSSKeyframesConfig parseCSSAnimationKeyframesConfig( ++ jsi::Runtime &rt, ++ const jsi::Value &config, ++ const std::string &componentName, ++ const std::shared_ptr &viewStylesRepository); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSTransitionConfig.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSTransitionConfig.h +new file mode 100644 +index 0000000..1ca2106 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSTransitionConfig.h +@@ -0,0 +1,50 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++struct CSSTransitionPropertySettings { ++ double duration; ++ EasingFunction easingFunction; ++ double delay; ++ bool allowDiscrete; ++}; ++ ++using CSSTransitionPropertiesSettings = ++ std::unordered_map; ++ ++struct CSSTransitionConfig { ++ TransitionProperties properties; ++ CSSTransitionPropertiesSettings settings; ++}; ++ ++struct PartialCSSTransitionConfig { ++ std::optional properties; ++ std::optional settings; ++}; ++ ++std::optional getTransitionPropertySettings( ++ const CSSTransitionPropertiesSettings &propertiesSettings, ++ const std::string &propName); ++ ++TransitionProperties getProperties(jsi::Runtime &rt, const jsi::Object &config); ++ ++CSSTransitionPropertiesSettings parseCSSTransitionPropertiesSettings( ++ jsi::Runtime &rt, ++ const jsi::Object &settings); ++ ++CSSTransitionConfig parseCSSTransitionConfig( ++ jsi::Runtime &rt, ++ const jsi::Value &config); ++ ++PartialCSSTransitionConfig parsePartialCSSTransitionConfig( ++ jsi::Runtime &rt, ++ const jsi::Value &partialConfig); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/common.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/common.h +new file mode 100644 +index 0000000..4d053e6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/common.h +@@ -0,0 +1,13 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated::css { ++ ++double getDuration(jsi::Runtime &rt, const jsi::Object &config); ++ ++EasingFunction getTimingFunction(jsi::Runtime &rt, const jsi::Object &config); ++ ++double getDelay(jsi::Runtime &rt, const jsi::Object &config); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSAnimation.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSAnimation.h +new file mode 100644 +index 0000000..3ac4004 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSAnimation.h +@@ -0,0 +1,51 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++class CSSAnimation { ++ public: ++ CSSAnimation( ++ jsi::Runtime &rt, ++ std::shared_ptr shadowNode, ++ std::string animationName, ++ const CSSKeyframesConfig &cssKeyframesConfig, ++ const CSSAnimationSettings &settings, ++ double timestamp); ++ ++ const std::string &getName() const; ++ std::shared_ptr getShadowNode() const; ++ ++ double getStartTimestamp(double timestamp) const; ++ AnimationProgressState getState(double timestamp) const; ++ bool isReversed() const; ++ ++ bool hasForwardsFillMode() const; ++ bool hasBackwardsFillMode() const; ++ ++ folly::dynamic getCurrentInterpolationStyle() const; ++ folly::dynamic getBackwardsFillStyle() const; ++ folly::dynamic getResetStyle() const; ++ ++ void run(double timestamp); ++ folly::dynamic update(double timestamp); ++ void updateSettings( ++ const PartialCSSAnimationSettings &updatedSettings, ++ double timestamp); ++ ++ private: ++ const std::string name_; ++ const std::shared_ptr shadowNode_; ++ AnimationFillMode fillMode_; ++ ++ const std::shared_ptr styleInterpolator_; ++ const std::shared_ptr progressProvider_; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSTransition.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSTransition.h +new file mode 100644 +index 0000000..1afdcbc +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSTransition.h +@@ -0,0 +1,50 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class CSSTransition { ++ public: ++ CSSTransition( ++ std::shared_ptr shadowNode, ++ const CSSTransitionConfig &config, ++ const std::shared_ptr &viewStylesRepository); ++ ++ Tag getViewTag() const; ++ std::shared_ptr getShadowNode() const; ++ double getMinDelay(double timestamp) const; ++ TransitionProgressState getState() const; ++ folly::dynamic getCurrentInterpolationStyle() const; ++ TransitionProperties getProperties() const; ++ PropertyNames getAllowedProperties( ++ const folly::dynamic &oldProps, ++ const folly::dynamic &newProps); ++ ++ void updateSettings(const PartialCSSTransitionConfig &config); ++ folly::dynamic run( ++ const ChangedProps &changedProps, ++ const folly::dynamic &lastUpdateValue, ++ double timestamp); ++ folly::dynamic update(double timestamp); ++ ++ private: ++ const std::shared_ptr shadowNode_; ++ const std::shared_ptr viewStylesRepository_; ++ TransitionProperties properties_; ++ CSSTransitionPropertiesSettings settings_; ++ TransitionStyleInterpolator styleInterpolator_; ++ TransitionProgressProvider progressProvider_; ++ ++ void updateTransitionProperties(const TransitionProperties &properties); ++ bool isAllowedProperty(const std::string &propertyName) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/EasingFunctions.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/EasingFunctions.h +new file mode 100644 +index 0000000..452a96b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/EasingFunctions.h +@@ -0,0 +1,27 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++ ++extern const std::unordered_map ++ PREDEFINED_EASING_MAP; ++ ++EasingFunction getPredefinedEasingFunction(const std::string &name); ++EasingFunction createParametrizedEasingFunction( ++ jsi::Runtime &rt, ++ const jsi::Object &easingConfig); ++ ++EasingFunction createEasingFunction( ++ jsi::Runtime &rt, ++ const jsi::Value &easingConfig); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/cubicBezier.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/cubicBezier.h +new file mode 100644 +index 0000000..fca77fc +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/cubicBezier.h +@@ -0,0 +1,15 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated::css { ++ ++double sampleCurveX(double t, double x1, double x2); ++double sampleCurveY(double t, double y1, double y2); ++double sampleCurveDerivativeX(double t, double x1, double x2); ++double solveCurveX(double x, double x1, double x2, double epsilon = 1e-6); ++ ++EasingFunction cubicBezier(double x1, double y1, double x2, double y2); ++EasingFunction cubicBezier(jsi::Runtime &rt, const jsi::Object &easingConfig); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/linear.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/linear.h +new file mode 100644 +index 0000000..a434118 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/linear.h +@@ -0,0 +1,20 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++double interpolateValue( ++ double x, ++ std::size_t leftIdx, ++ const std::vector &arrX, ++ const std::vector &arrY); ++ ++EasingFunction linear( ++ const std::vector &pointsX, ++ const std::vector &pointsY); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/steps.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/steps.h +new file mode 100644 +index 0000000..720c51b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/steps.h +@@ -0,0 +1,14 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++EasingFunction steps( ++ const std::vector &pointsX, ++ const std::vector &pointsY); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/InterpolatorFactory.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/InterpolatorFactory.h +new file mode 100644 +index 0000000..ab61b15 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/InterpolatorFactory.h +@@ -0,0 +1,194 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++// Template class implementations ++template ++class SimpleValueInterpolatorFactory : public PropertyInterpolatorFactory { ++ public: ++ template ++ explicit SimpleValueInterpolatorFactory(const TValue &defaultValue) ++ : PropertyInterpolatorFactory(), defaultValue_(defaultValue) {} ++ ++ bool isDiscreteProperty() const override { ++ // The property is considered discrete if all of the allowed types are ++ // discrete ++ return (Discrete && ...); ++ } ++ ++ const CSSValue &getDefaultValue() const override { ++ return defaultValue_; ++ } ++ ++ std::shared_ptr create( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository) ++ const override { ++ return std::make_shared>( ++ propertyPath, defaultValue_, viewStylesRepository); ++ } ++ ++ private: ++ const CSSValueVariant defaultValue_; ++}; ++ ++template ++class ResolvableValueInterpolatorFactory : public PropertyInterpolatorFactory { ++ public: ++ template ++ explicit ResolvableValueInterpolatorFactory( ++ RelativeTo relativeTo, ++ const std::string &relativeProperty, ++ const TValue &defaultValue) ++ : PropertyInterpolatorFactory(), ++ relativeTo_(relativeTo), ++ relativeProperty_(relativeProperty), ++ defaultValue_(defaultValue) {} ++ ++ const CSSValue &getDefaultValue() const override { ++ return defaultValue_; ++ } ++ ++ std::shared_ptr create( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository) ++ const override { ++ return std::make_shared>( ++ propertyPath, ++ defaultValue_, ++ viewStylesRepository, ++ relativeTo_, ++ relativeProperty_); ++ } ++ ++ private: ++ const RelativeTo relativeTo_; ++ const std::string relativeProperty_; ++ const CSSValueVariant defaultValue_; ++}; ++ ++/** ++ * Helper function to create a concrete CSSValue from defaultValue ++ */ ++template ++CSSValueVariant createCSSValue(const auto &defaultValue) { ++ using ValueType = decltype(defaultValue); ++ CSSValueVariant result; ++ ++ auto tryOne = [&]() -> bool { ++ if constexpr (std::is_constructible_v) { ++ if constexpr (ValueConstructibleCSSValue) { ++ // For construction from a non-jsi::Value, we perform a runtime ++ // canConstruct check only if the type has a canConstruct method. ++ // (this is needed e.g. when different CSS value types can be ++ // constructed from the same value type, like CSSLength and CSSKeyword) ++ if (!TCSSValue::canConstruct(defaultValue)) { ++ return false; ++ } ++ } ++ result = CSSValueVariant( ++ std::variant(TCSSValue(defaultValue))); ++ return true; ++ } ++ return false; ++ }; ++ ++ // Try constructing with each allowed type until one succeeds ++ if (!(tryOne.template operator()() || ...)) { ++ throw std::runtime_error( ++ "[Reanimated] No compatible type found for construction from defaultValue"); ++ } ++ ++ return result; ++} ++ ++/** ++ * Value interpolator factories ++ */ ++template ++auto value(const auto &defaultValue) -> std::enable_if_t< ++ (std::is_constructible_v || ...), ++ std::shared_ptr> { ++ // Create a concrete CSSValue from the defaultValue ++ auto cssValue = createCSSValue(defaultValue); ++ return std::make_shared>( ++ std::move(cssValue)); ++} ++ ++template ++auto value( ++ RelativeTo relativeTo, ++ const std::string &relativeProperty, ++ const auto &defaultValue) ++ -> std::enable_if_t< ++ (std::is_constructible_v || ...), ++ std::shared_ptr> { ++ // Create a concrete CSSValue from the defaultValue ++ auto cssValue = createCSSValue(defaultValue); ++ return std::make_shared>( ++ relativeTo, relativeProperty, std::move(cssValue)); ++} ++ ++/** ++ * Transform operation interpolator factories ++ */ ++template ++auto transformOp(const auto &defaultValue) -> std::enable_if_t< ++ std::is_base_of_v && ++ std::is_constructible_v, ++ std::shared_ptr> { ++ return std::make_shared>( ++ std::make_shared(defaultValue)); ++} ++ ++template ++auto transformOp( ++ RelativeTo relativeTo, ++ const std::string &relativeProperty, ++ const auto &defaultValue) ++ -> std::enable_if_t< ++ std::is_base_of_v && ++ std::is_constructible_v && ++ ResolvableOperation, ++ std::shared_ptr> { ++ return std::make_shared>( ++ std::make_shared(defaultValue), relativeTo, relativeProperty); ++} ++ ++/** ++ * Record property interpolator factory ++ */ ++std::shared_ptr record( ++ const InterpolatorFactoriesRecord &factories); ++ ++/** ++ * Array property interpolator factory ++ */ ++std::shared_ptr array( ++ const InterpolatorFactoriesArray &factories); ++ ++/** ++ * Transform interpolators ++ */ ++std::shared_ptr transforms( ++ const std::unordered_map< ++ std::string, ++ std::shared_ptr> &interpolators); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/PropertyInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/PropertyInterpolator.h +new file mode 100644 +index 0000000..3d4b8be +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/PropertyInterpolator.h +@@ -0,0 +1,72 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class PropertyInterpolator { ++ public: ++ explicit PropertyInterpolator( ++ PropertyPath propertyPath, ++ const std::shared_ptr &viewStylesRepository); ++ ++ virtual folly::dynamic getStyleValue( ++ const std::shared_ptr &shadowNode) const = 0; ++ virtual folly::dynamic getResetStyle( ++ const std::shared_ptr &shadowNode) const = 0; ++ virtual folly::dynamic getFirstKeyframeValue() const = 0; ++ virtual folly::dynamic getLastKeyframeValue() const = 0; ++ virtual bool equalsReversingAdjustedStartValue( ++ const folly::dynamic &propertyValue) const = 0; ++ ++ virtual void updateKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &keyframes) = 0; ++ virtual void updateKeyframesFromStyleChange( ++ const folly::dynamic &oldStyleValue, ++ const folly::dynamic &newStyleValue, ++ const folly::dynamic &lastUpdateValue) = 0; ++ ++ virtual folly::dynamic interpolate( ++ const std::shared_ptr &shadowNode, ++ const std::shared_ptr &progressProvider) ++ const = 0; ++ ++ protected: ++ const PropertyPath propertyPath_; ++ const std::shared_ptr viewStylesRepository_; ++}; ++ ++class PropertyInterpolatorFactory { ++ public: ++ PropertyInterpolatorFactory() = default; ++ virtual ~PropertyInterpolatorFactory() = default; ++ ++ virtual bool isDiscreteProperty() const; ++ virtual const CSSValue &getDefaultValue() const = 0; ++ ++ virtual std::shared_ptr create( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository) ++ const = 0; ++}; ++ ++using PropertyInterpolatorsRecord = ++ std::unordered_map>; ++using InterpolatorFactoriesRecord = std:: ++ unordered_map>; ++ ++using PropertyInterpolatorsArray = ++ std::vector>; ++using InterpolatorFactoriesArray = ++ std::vector>; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h +new file mode 100644 +index 0000000..4ecccf4 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h +@@ -0,0 +1,39 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++class ArrayPropertiesInterpolator : public GroupPropertiesInterpolator { ++ public: ++ ArrayPropertiesInterpolator( ++ const InterpolatorFactoriesArray &factories, ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository); ++ virtual ~ArrayPropertiesInterpolator() = default; ++ ++ bool equalsReversingAdjustedStartValue( ++ const folly::dynamic &propertyValue) const override; ++ ++ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; ++ void updateKeyframesFromStyleChange( ++ const folly::dynamic &oldStyleValue, ++ const folly::dynamic &newStyleValue, ++ const folly::dynamic &lastUpdateValue) override; ++ ++ protected: ++ folly::dynamic mapInterpolators( ++ const std::function &callback) ++ const override; ++ ++ private: ++ const InterpolatorFactoriesArray &factories_; ++ PropertyInterpolatorsArray interpolators_; ++ ++ void resizeInterpolators(size_t valuesCount); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h +new file mode 100644 +index 0000000..b80657a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h +@@ -0,0 +1,35 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++class GroupPropertiesInterpolator : public PropertyInterpolator { ++ public: ++ GroupPropertiesInterpolator( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository); ++ ++ folly::dynamic getStyleValue( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getResetStyle( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getFirstKeyframeValue() const override; ++ folly::dynamic getLastKeyframeValue() const override; ++ ++ folly::dynamic interpolate( ++ const std::shared_ptr &shadowNode, ++ const std::shared_ptr &progressProvider) ++ const override; ++ ++ protected: ++ virtual folly::dynamic mapInterpolators( ++ const std::function &callback) ++ const = 0; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h +new file mode 100644 +index 0000000..94fdead +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h +@@ -0,0 +1,40 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++class RecordPropertiesInterpolator : public GroupPropertiesInterpolator { ++ public: ++ RecordPropertiesInterpolator( ++ const InterpolatorFactoriesRecord &factories, ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository); ++ virtual ~RecordPropertiesInterpolator() = default; ++ ++ bool equalsReversingAdjustedStartValue( ++ const folly::dynamic &propertyValue) const override; ++ ++ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; ++ void updateKeyframesFromStyleChange( ++ const folly::dynamic &oldStyleValue, ++ const folly::dynamic &newStyleValue, ++ const folly::dynamic &lastUpdateValue) override; ++ ++ protected: ++ folly::dynamic mapInterpolators( ++ const std::function &callback) ++ const override; ++ ++ void maybeCreateInterpolator(const std::string &propertyName); ++ ++ private: ++ const InterpolatorFactoriesRecord &factories_; ++ PropertyInterpolatorsRecord interpolators_; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h +new file mode 100644 +index 0000000..6b72e02 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h +@@ -0,0 +1,29 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++// We can just re-use the logic from the RecordPropertiesInterpolator class as ++// interpolating multiple properties from the view style during animation is the ++// same as interpolating record properties ++class AnimationStyleInterpolator : public RecordPropertiesInterpolator { ++ public: ++ explicit AnimationStyleInterpolator( ++ jsi::Runtime &rt, ++ const jsi::Value &keyframes, ++ const std::string &componentName, ++ const std::shared_ptr &viewStylesRepository) ++ : RecordPropertiesInterpolator( ++ getComponentInterpolators(componentName), ++ {}, ++ viewStylesRepository) { ++ updateKeyframes(rt, keyframes); ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h +new file mode 100644 +index 0000000..2d4769e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h +@@ -0,0 +1,51 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class TransitionStyleInterpolator { ++ public: ++ TransitionStyleInterpolator( ++ const std::string &componentName, ++ const std::shared_ptr &viewStylesRepository); ++ ++ std::unordered_set getReversedPropertyNames( ++ const folly::dynamic &newPropertyValues) const; ++ ++ folly::dynamic interpolate( ++ const std::shared_ptr &shadowNode, ++ const TransitionProgressProvider &transitionProgressProvider) const; ++ ++ void discardFinishedInterpolators( ++ const TransitionProgressProvider &transitionProgressProvider); ++ void discardIrrelevantInterpolators( ++ const std::unordered_set &transitionPropertyNames); ++ void updateInterpolatedProperties( ++ const ChangedProps &changedProps, ++ const folly::dynamic &lastUpdateValue); ++ ++ private: ++ using MapInterpolatorsCallback = std::function &, ++ const std::shared_ptr &)>; ++ ++ const std::string componentName_; ++ const std::shared_ptr viewStylesRepository_; ++ ++ PropertyInterpolatorsRecord interpolators_; ++ ++ folly::dynamic mapInterpolators( ++ const TransitionProgressProvider &transitionProgressProvider, ++ const MapInterpolatorsCallback &callback) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformInterpolator.h +new file mode 100644 +index 0000000..2426df9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformInterpolator.h +@@ -0,0 +1,85 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++class TransformInterpolator { ++ public: ++ using Interpolators = ++ std::unordered_map>; ++ ++ struct UpdateContext { ++ const std::shared_ptr &node; ++ const std::shared_ptr &viewStylesRepository; ++ const std::shared_ptr &interpolators; ++ }; ++ ++ virtual ~TransformInterpolator() = default; ++ ++ virtual std::shared_ptr getDefaultOperation() const = 0; ++ virtual std::shared_ptr interpolate( ++ double progress, ++ const std::shared_ptr &from, ++ const std::shared_ptr &to, ++ const UpdateContext &context) const = 0; ++ virtual std::shared_ptr resolveOperation( ++ const std::shared_ptr &operation, ++ const UpdateContext &context) const = 0; ++}; ++ ++template ++class TransformInterpolatorBase : public TransformInterpolator { ++ public: ++ explicit TransformInterpolatorBase( ++ std::shared_ptr defaultOperation) ++ : defaultOperation_(defaultOperation) {} ++ ++ std::shared_ptr getDefaultOperation() const override { ++ return defaultOperation_; ++ } ++ ++ std::shared_ptr interpolate( ++ double progress, ++ const std::shared_ptr &from, ++ const std::shared_ptr &to, ++ const UpdateContext &context) const override { ++ return std::make_shared(interpolate( ++ progress, ++ *std::static_pointer_cast(from), ++ *std::static_pointer_cast(to), ++ context)); ++ } ++ ++ std::shared_ptr resolveOperation( ++ const std::shared_ptr &operation, ++ const UpdateContext &context) const override { ++ return std::make_shared(resolveOperation( ++ *std::static_pointer_cast(operation), context)); ++ } ++ ++ protected: ++ virtual TOperation interpolate( ++ double progress, ++ const TOperation &from, ++ const TOperation &to, ++ const UpdateContext &context) const = 0; ++ ++ virtual TOperation resolveOperation( ++ const TOperation &operation, ++ const UpdateContext &context) const { ++ return operation; ++ } ++ ++ private: ++ std::shared_ptr defaultOperation_; ++}; ++ ++using TransformInterpolators = TransformInterpolator::Interpolators; ++using TransformInterpolatorUpdateContext = TransformInterpolator::UpdateContext; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperation.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperation.h +new file mode 100644 +index 0000000..f8a2023 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperation.h +@@ -0,0 +1,87 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++#ifndef NDEBUG ++#include ++#include ++#endif // NDEBUG ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++using namespace react; ++ ++// Base struct for TransformOperation ++struct TransformOperation { ++ virtual bool operator==(const TransformOperation &other) const = 0; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const TransformOperation &operation); ++ virtual std::string stringifyOperationValue() const = 0; ++#endif // NDEBUG ++ ++ std::string getOperationName() const; ++ virtual TransformOp type() const = 0; ++ virtual bool isRelative() const; ++ ++ static std::shared_ptr fromJSIValue( ++ jsi::Runtime &rt, ++ const jsi::Value &value); ++ static std::shared_ptr fromDynamic( ++ const folly::dynamic &value); ++ folly::dynamic toDynamic() const; ++ virtual folly::dynamic valueToDynamic() const = 0; ++ ++ virtual bool canConvertTo(TransformOp type) const; ++ virtual std::vector> convertTo( ++ TransformOp type) const; ++ ++ virtual TransformMatrix3D toMatrix() const = 0; ++ void assertCanConvertTo(TransformOp type) const; ++}; ++ ++using TransformOperations = std::vector>; ++ ++// Template overload to inherit from in final operation structs ++template ++struct TransformOperationBase : public TransformOperation { ++ const TValue value; ++ ++ explicit TransformOperationBase(const TValue &value) : value(value) {} ++ virtual ~TransformOperationBase() = default; ++ ++ TransformOp type() const override { ++ return TOperation; ++ } ++ ++ bool operator==(const TransformOperation &other) const override { ++ if (type() != other.type()) { ++ return false; ++ } ++ const auto &otherOperation = ++ static_cast &>(other); ++ return value == otherOperation.value; ++ } ++ ++#ifndef NDEBUG ++ std::string stringifyOperationValue() const override; ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h +new file mode 100644 +index 0000000..781ad94 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h +@@ -0,0 +1,124 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++template ++concept ResolvableOperation = requires(TOperation operation) { ++ { ++ operation.value ++ } -> std::convertible_to< ++ typename std::remove_reference_t>; ++ requires Resolvable>; ++}; // NOLINT(readability/braces) ++ ++// Base implementation for simple operations ++template ++class TransformOperationInterpolator ++ : public TransformInterpolatorBase { ++ public: ++ TransformOperationInterpolator( ++ std::shared_ptr defaultOperation) ++ : TransformInterpolatorBase(defaultOperation) {} ++ ++ OperationType interpolate( ++ double progress, ++ const OperationType &from, ++ const OperationType &to, ++ const TransformInterpolatorUpdateContext &context) const override { ++ return OperationType{from.value.interpolate(progress, to.value)}; ++ } ++}; ++ ++// Specialization for PerspectiveOperation ++template <> ++class TransformOperationInterpolator ++ : public TransformInterpolatorBase { ++ public: ++ using TransformInterpolatorBase< ++ PerspectiveOperation>::TransformInterpolatorBase; ++ ++ PerspectiveOperation interpolate( ++ double progress, ++ const PerspectiveOperation &from, ++ const PerspectiveOperation &to, ++ const TransformInterpolatorUpdateContext &context) const override; ++}; ++ ++// Specialization for MatrixOperation ++template <> ++class TransformOperationInterpolator ++ : public TransformInterpolatorBase { ++ public: ++ using TransformInterpolatorBase::TransformInterpolatorBase; ++ ++ MatrixOperation interpolate( ++ double progress, ++ const MatrixOperation &from, ++ const MatrixOperation &to, ++ const TransformInterpolatorUpdateContext &context) const override; ++ ++ private: ++ TransformMatrix3D matrixFromOperation( ++ const MatrixOperation &matrixOperation, ++ const TransformInterpolatorUpdateContext &context) const; ++}; ++ ++// Specialization for resolvable operations ++template ++class TransformOperationInterpolator ++ : public TransformInterpolatorBase { ++ public: ++ TransformOperationInterpolator( ++ const std::shared_ptr &defaultOperation, ++ RelativeTo relativeTo, ++ const std::string &relativeProperty) ++ : TransformInterpolatorBase(defaultOperation), ++ relativeTo_(relativeTo), ++ relativeProperty_(relativeProperty) {} ++ ++ TOperation interpolate( ++ double progress, ++ const TOperation &from, ++ const TOperation &to, ++ const TransformInterpolatorUpdateContext &context) const override { ++ return TOperation{from.value.interpolate( ++ progress, to.value, getResolvableValueContext(context))}; ++ } ++ ++ TOperation resolveOperation( ++ const TOperation &operation, ++ const TransformInterpolatorUpdateContext &context) const override { ++ const auto &resolved = ++ operation.value.resolve(getResolvableValueContext(context)); ++ ++ if (!resolved.has_value()) { ++ return TOperation{operation.value}; ++ } ++ ++ return TOperation{resolved.value()}; ++ } ++ ++ private: ++ const RelativeTo relativeTo_; ++ const std::string relativeProperty_; ++ ++ CSSResolvableValueInterpolationContext getResolvableValueContext( ++ const TransformInterpolatorUpdateContext &context) const { ++ return { ++ .node = context.node, ++ .viewStylesRepository = context.viewStylesRepository, ++ .relativeProperty = relativeProperty_, ++ .relativeTo = relativeTo_, ++ }; ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h +new file mode 100644 +index 0000000..b0f5b10 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h +@@ -0,0 +1,98 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++struct TransformKeyframe { ++ const double fromOffset; ++ const double toOffset; ++ // If the value is nullopt, we would have to read it from the view style ++ // (in all other cases, both vectors will have the same number of elements of ++ // corresponding types - elements from the same index will form interpolation ++ // pairs) ++ const std::optional fromOperations; ++ const std::optional toOperations; ++}; ++ ++class TransformsStyleInterpolator final : public PropertyInterpolator { ++ public: ++ TransformsStyleInterpolator( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &interpolators, ++ const std::shared_ptr &viewStylesRepository); ++ ++ folly::dynamic getStyleValue( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getResetStyle( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getFirstKeyframeValue() const override; ++ folly::dynamic getLastKeyframeValue() const override; ++ bool equalsReversingAdjustedStartValue( ++ const folly::dynamic &propertyValue) const override; ++ ++ folly::dynamic interpolate( ++ const std::shared_ptr &shadowNode, ++ const std::shared_ptr &progressProvider) ++ const override; ++ ++ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; ++ void updateKeyframesFromStyleChange( ++ const folly::dynamic &oldStyleValue, ++ const folly::dynamic &newStyleValue, ++ const folly::dynamic &lastUpdateValue) override; ++ ++ private: ++ const std::shared_ptr interpolators_; ++ static const TransformOperations defaultStyleValue_; ++ ++ std::vector> keyframes_; ++ std::optional reversingAdjustedStartValue_; ++ ++ static std::optional parseTransformOperations( ++ jsi::Runtime &rt, ++ const jsi::Value &values); ++ static std::optional parseTransformOperations( ++ const folly::dynamic &values); ++ std::shared_ptr createTransformKeyframe( ++ double fromOffset, ++ double toOffset, ++ const std::optional &fromOperationsOptional, ++ const std::optional &toOperationsOptional) const; ++ std::pair ++ createTransformInterpolationPair( ++ const TransformOperations &fromOperations, ++ const TransformOperations &toOperations) const; ++ void addConvertedOperations( ++ const std::shared_ptr &sourceOperation, ++ const std::shared_ptr &targetOperation, ++ TransformOperations &sourceResult, ++ TransformOperations &targetResult) const; ++ std::shared_ptr getDefaultOperationOfType( ++ TransformOp type) const; ++ ++ size_t getIndexOfCurrentKeyframe( ++ const std::shared_ptr &progressProvider) const; ++ TransformOperations getFallbackValue( ++ const std::shared_ptr &shadowNode) const; ++ TransformOperations interpolateOperations( ++ const std::shared_ptr &shadowNode, ++ double keyframeProgress, ++ const TransformOperations &fromOperations, ++ const TransformOperations &toOperations) const; ++ ++ static folly::dynamic convertResultToDynamic( ++ const TransformOperations &operations); ++ TransformInterpolatorUpdateContext createUpdateContext( ++ const std::shared_ptr &shadowNode) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/matrix.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/matrix.h +new file mode 100644 +index 0000000..fe22827 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/matrix.h +@@ -0,0 +1,29 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++// Matrix ++struct MatrixOperation final ++ : public TransformOperationBase< ++ TransformOp::Matrix, ++ std::variant> { ++ using TransformOperationBase< ++ TransformOp::Matrix, ++ std::variant>:: ++ TransformOperationBase; ++ ++ explicit MatrixOperation(const TransformMatrix3D &value); ++ explicit MatrixOperation(const TransformOperations &operations); ++ ++ bool operator==(const TransformOperation &other) const override; ++ ++ folly::dynamic valueToDynamic() const override; ++ TransformMatrix3D toMatrix() const override; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/perspective.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/perspective.h +new file mode 100644 +index 0000000..09f7b82 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/perspective.h +@@ -0,0 +1,25 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated::css { ++ ++struct PerspectiveOperation final ++ : public TransformOperationBase { ++ using TransformOperationBase:: ++ TransformOperationBase; ++ ++ explicit PerspectiveOperation(double value) ++ : TransformOperationBase( ++ CSSDouble(value)) {} ++ ++ folly::dynamic valueToDynamic() const override { ++ return value.value != 0 ? value.toDynamic() : folly::dynamic(); ++ } ++ ++ TransformMatrix3D toMatrix() const override { ++ return TransformMatrix3D::create(value.value); ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/rotate.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/rotate.h +new file mode 100644 +index 0000000..342e846 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/rotate.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++template ++struct RotateOperationBase ++ : public TransformOperationBase { ++ using TransformOperationBase::TransformOperationBase; ++ ++ explicit RotateOperationBase(const std::string &value) ++ : TransformOperationBase(CSSAngle(value)) {} ++ ++ folly::dynamic valueToDynamic() const override { ++ return this->value.toDynamic(); ++ } ++ ++ TransformMatrix3D toMatrix() const override { ++ return TransformMatrix3D::create(this->value.value); ++ } ++}; ++ ++using RotateOperation = RotateOperationBase; ++ ++using RotateXOperation = RotateOperationBase; ++ ++using RotateYOperation = RotateOperationBase; ++ ++struct RotateZOperation final ++ : public RotateOperationBase { ++ using RotateOperationBase::RotateOperationBase; ++ ++ bool canConvertTo(TransformOp type) const override { ++ return type == TransformOp::Rotate; ++ } ++ ++ TransformOperations convertTo(TransformOp type) const override { ++ assertCanConvertTo(type); ++ return {std::make_shared(value)}; ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/scale.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/scale.h +new file mode 100644 +index 0000000..3889589 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/scale.h +@@ -0,0 +1,51 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++template ++struct ScaleOperationBase ++ : public TransformOperationBase { ++ using TransformOperationBase::TransformOperationBase; ++ ++ explicit ScaleOperationBase(const double value) ++ : TransformOperationBase(CSSDouble(value)) {} ++ ++ folly::dynamic valueToDynamic() const override { ++ return this->value.toDynamic(); ++ } ++ ++ TransformMatrix3D toMatrix() const override { ++ return TransformMatrix3D::create(this->value.value); ++ } ++}; ++ ++using ScaleXOperation = ScaleOperationBase; ++ ++using ScaleYOperation = ScaleOperationBase; ++ ++struct ScaleOperation final : public ScaleOperationBase { ++ using ScaleOperationBase::ScaleOperationBase; ++ ++ bool canConvertTo(TransformOp type) const override { ++ return type == TransformOp::ScaleX || type == TransformOp::ScaleY; ++ } ++ ++ TransformOperations convertTo(TransformOp type) const override { ++ assertCanConvertTo(type); ++ if (type == TransformOp::ScaleX) { ++ return { ++ std::make_shared(value), ++ std::make_shared(value)}; ++ } else { ++ return { ++ std::make_shared(value), ++ std::make_shared(value)}; ++ } ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/skew.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/skew.h +new file mode 100644 +index 0000000..d23502f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/skew.h +@@ -0,0 +1,29 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++template ++struct SkewOperationBase : public TransformOperationBase { ++ using TransformOperationBase::TransformOperationBase; ++ ++ explicit SkewOperationBase(const std::string &value) ++ : TransformOperationBase(CSSAngle(value)) {} ++ ++ folly::dynamic valueToDynamic() const override { ++ return this->value.toDynamic(); ++ } ++ ++ TransformMatrix3D toMatrix() const override { ++ return TransformMatrix3D::create(this->value.value); ++ } ++}; ++ ++using SkewXOperation = SkewOperationBase; ++ ++using SkewYOperation = SkewOperationBase; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/translate.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/translate.h +new file mode 100644 +index 0000000..44f0665 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/translate.h +@@ -0,0 +1,40 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++template ++struct TranslateOperationBase ++ : public TransformOperationBase { ++ using TransformOperationBase::TransformOperationBase; ++ ++ explicit TranslateOperationBase(double value) ++ : TransformOperationBase(CSSLength(value)) {} ++ explicit TranslateOperationBase(const std::string &value) ++ : TransformOperationBase(CSSLength(value)) {} ++ ++ bool isRelative() const override { ++ return this->value.isRelative; ++ } ++ ++ folly::dynamic valueToDynamic() const override { ++ return this->value.toDynamic(); ++ } ++ ++ TransformMatrix3D toMatrix() const override { ++ if (this->value.isRelative) { ++ throw std::invalid_argument( ++ "[Reanimated] Cannot convert relative translate to the matrix."); ++ } ++ return TransformMatrix3D::create(this->value.value); ++ } ++}; ++ ++using TranslateXOperation = TranslateOperationBase; ++ ++using TranslateYOperation = TranslateOperationBase; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h +new file mode 100644 +index 0000000..a5af3e6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h +@@ -0,0 +1,49 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++/** ++ * Concrete implementation of ValueInterpolator for CSS values that require ++ * resolution before interpolation. This class handles interpolation of relative ++ * values (e.g., percentage length values) that need to be resolved to absolute ++ * values using the context describing the ShadowNode before the interpolation ++ * can occur. ++ */ ++template ++class ResolvableValueInterpolator final ++ : public SimpleValueInterpolator { ++ static_assert( ++ (... && std::is_base_of::value), ++ "[Reanimated] ResolvableValueInterpolator: All interpolated types must inherit from CSSValue"); ++ ++ public: ++ using ValueType = ++ typename SimpleValueInterpolator::ValueType; ++ ++ explicit ResolvableValueInterpolator( ++ const PropertyPath &propertyPath, ++ const ValueType &defaultStyleValue, ++ const std::shared_ptr &viewStylesRepository, ++ RelativeTo relativeTo, ++ std::string relativeProperty); ++ ++ protected: ++ folly::dynamic interpolateValue( ++ double progress, ++ const std::shared_ptr &fromValue, ++ const std::shared_ptr &toValue, ++ const ValueInterpolatorUpdateContext &context) const override; ++ ++ private: ++ RelativeTo relativeTo_; ++ std::string relativeProperty_; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h +new file mode 100644 +index 0000000..b1460ae +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h +@@ -0,0 +1,43 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++/** ++ * Concrete implementation of ValueInterpolator for simple CSS values that don't ++ * require resolution before interpolation. This class handles direct ++ * interpolation between values without any additional processing or resolution. ++ */ ++template ++class SimpleValueInterpolator : public ValueInterpolator { ++ static_assert( ++ (... && std::is_base_of::value), ++ "[Reanimated] SimpleValueInterpolator: All interpolated types must inherit from CSSValue"); ++ ++ public: ++ using ValueType = CSSValueVariant; ++ ++ explicit SimpleValueInterpolator( ++ const PropertyPath &propertyPath, ++ const ValueType &defaultStyleValue, ++ const std::shared_ptr &viewStylesRepository); ++ ++ protected: ++ std::shared_ptr createValue( ++ jsi::Runtime &rt, ++ const jsi::Value &value) const override; ++ ++ std::shared_ptr createValue( ++ const folly::dynamic &value) const override; ++ ++ folly::dynamic interpolateValue( ++ double progress, ++ const std::shared_ptr &fromValue, ++ const std::shared_ptr &toValue, ++ const ValueInterpolatorUpdateContext &context) const override; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ValueInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ValueInterpolator.h +new file mode 100644 +index 0000000..5dd9537 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ValueInterpolator.h +@@ -0,0 +1,78 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++struct ValueKeyframe { ++ double offset; ++ std::optional> value; ++}; ++ ++/** ++ * Base class for CSS value interpolators that provides common functionality ++ * for interpolating CSS values during animations. This class should be extended ++ * by concrete implementations for specific CSS value types to provide ++ * type-specific interpolation logic. ++ */ ++class ValueInterpolator : public PropertyInterpolator { ++ public: ++ explicit ValueInterpolator( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &defaultValue, ++ const std::shared_ptr &viewStylesRepository); ++ virtual ~ValueInterpolator() = default; ++ ++ folly::dynamic getStyleValue( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getResetStyle( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getFirstKeyframeValue() const override; ++ folly::dynamic getLastKeyframeValue() const override; ++ bool equalsReversingAdjustedStartValue( ++ const folly::dynamic &propertyValue) const override; ++ ++ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; ++ void updateKeyframesFromStyleChange( ++ const folly::dynamic &oldStyleValue, ++ const folly::dynamic &newStyleValue, ++ const folly::dynamic &lastUpdateValue) override; ++ ++ folly::dynamic interpolate( ++ const std::shared_ptr &shadowNode, ++ const std::shared_ptr &progressProvider) ++ const override; ++ ++ protected: ++ std::vector keyframes_; ++ std::shared_ptr defaultStyleValue_; ++ folly::dynamic defaultStyleValueDynamic_; ++ folly::dynamic reversingAdjustedStartValue_; ++ ++ virtual std::shared_ptr createValue( ++ jsi::Runtime &rt, ++ const jsi::Value &value) const = 0; ++ virtual std::shared_ptr createValue( ++ const folly::dynamic &value) const = 0; ++ virtual folly::dynamic interpolateValue( ++ double progress, ++ const std::shared_ptr &fromValue, ++ const std::shared_ptr &toValue, ++ const ValueInterpolatorUpdateContext &context) const = 0; ++ ++ private: ++ folly::dynamic convertOptionalToDynamic( ++ const std::optional> &value) const; ++ std::shared_ptr getFallbackValue( ++ const std::shared_ptr &shadowNode) const; ++ size_t getToKeyframeIndex( ++ const std::shared_ptr &progressProvider) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/misc/ViewStylesRepository.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/misc/ViewStylesRepository.h +new file mode 100644 +index 0000000..8365c0d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/misc/ViewStylesRepository.h +@@ -0,0 +1,61 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++using namespace react; ++ ++struct CachedShadowNode { ++ LayoutMetrics layoutMetrics; ++ std::shared_ptr viewProps; ++}; ++ ++class ViewStylesRepository { ++ public: ++ ViewStylesRepository( ++ const std::shared_ptr &staticPropsRegistry, ++ const std::shared_ptr &animatedPropsRegistry); ++ ++ void setUIManager(const std::shared_ptr &uiManager) { ++ uiManager_ = uiManager; ++ } ++ ++ jsi::Value getNodeProp( ++ const std::shared_ptr &shadowNode, ++ const std::string &propName); ++ jsi::Value getParentNodeProp( ++ const std::shared_ptr &shadowNode, ++ const std::string &propName); ++ folly::dynamic getStyleProp(Tag tag, const PropertyPath &propertyPath); ++ ++ void clearNodesCache(); ++ ++ private: ++ std::shared_ptr uiManager_; ++ std::shared_ptr staticPropsRegistry_; ++ std::shared_ptr animatedPropsRegistry_; ++ ++ std::unordered_map shadowNodeCache_; ++ ++ void updateCacheIfNeeded( ++ CachedShadowNode &cachedNode, ++ const std::shared_ptr &shadowNode); ++ ++ static folly::dynamic getPropertyValue( ++ const folly::dynamic &value, ++ const PropertyPath &propertyPath); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/AnimationProgressProvider.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/AnimationProgressProvider.h +new file mode 100644 +index 0000000..74f2257 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/AnimationProgressProvider.h +@@ -0,0 +1,68 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++enum class AnimationProgressState { ++ Pending, // When the animation is waiting for the delay to pass ++ Running, ++ Paused, ++ Finished ++}; ++ ++class AnimationProgressProvider final : public KeyframeProgressProvider, ++ public RawProgressProvider { ++ public: ++ AnimationProgressProvider( ++ double timestamp, ++ double duration, ++ double delay, ++ double iterationCount, ++ AnimationDirection direction, ++ EasingFunction easingFunction, ++ const std::shared_ptr &keyframeEasingFunctions); ++ ++ void setIterationCount(double iterationCount); ++ void setDirection(AnimationDirection direction); ++ void setEasingFunction(const EasingFunction &easingFunction); ++ ++ AnimationDirection getDirection() const; ++ double getGlobalProgress() const override; ++ double getKeyframeProgress(double fromOffset, double toOffset) const override; ++ AnimationProgressState getState(double timestamp) const; ++ double getPauseTimestamp() const; ++ double getTotalPausedTime(double timestamp) const; ++ double getStartTimestamp(double timestamp) const; ++ ++ void pause(double timestamp); ++ void play(double timestamp); ++ void resetProgress() override; ++ ++ protected: ++ std::optional calculateRawProgress(double timestamp) override; ++ ++ private: ++ double iterationCount_; ++ AnimationDirection direction_; ++ EasingFunction easingFunction_; ++ std::shared_ptr keyframeEasingFunctions_; ++ ++ unsigned currentIteration_ = 1; ++ double previousIterationsDuration_ = 0; ++ double pauseTimestamp_ = 0; ++ double totalPausedTime_ = 0; ++ ++ bool shouldFinish(double timestamp) const; ++ ++ double updateIterationProgress(double currentIterationElapsedTime); ++ double applyAnimationDirection(double iterationProgress) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/KeyframeProgressProvider.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/KeyframeProgressProvider.h +new file mode 100644 +index 0000000..2b61d44 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/KeyframeProgressProvider.h +@@ -0,0 +1,13 @@ ++#pragma once ++ ++namespace reanimated::css { ++ ++class KeyframeProgressProvider { ++ public: ++ virtual double getGlobalProgress() const = 0; ++ ++ virtual double getKeyframeProgress(double fromOffset, double toOffset) ++ const = 0; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/RawProgressProvider.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/RawProgressProvider.h +new file mode 100644 +index 0000000..9256aad +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/RawProgressProvider.h +@@ -0,0 +1,31 @@ ++#pragma once ++ ++#include ++namespace reanimated::css { ++ ++class RawProgressProvider { ++ public: ++ RawProgressProvider(double timestamp, double duration, double delay); ++ ++ void setDuration(double duration); ++ void setDelay(double delay); ++ ++ virtual void resetProgress(); ++ void update(double timestamp); ++ ++ protected: ++ double duration_; ++ double delay_; ++ double creationTimestamp_; ++ ++ std::optional rawProgress_; ++ std::optional previousRawProgress_; ++ ++ /** ++ * Calculates the progress of the animation at the given timestamp without ++ * applying any decorations (e.g. animation direction, easing) ++ */ ++ virtual std::optional calculateRawProgress(double timestamp) = 0; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/TransitionProgressProvider.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/TransitionProgressProvider.h +new file mode 100644 +index 0000000..696605b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/TransitionProgressProvider.h +@@ -0,0 +1,82 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++enum class TransitionProgressState { Pending, Running, Finished }; ++ ++class TransitionPropertyProgressProvider final ++ : public KeyframeProgressProvider, ++ public RawProgressProvider { ++ public: ++ TransitionPropertyProgressProvider( ++ double timestamp, ++ double duration, ++ double delay, ++ const EasingFunction &easingFunction); ++ TransitionPropertyProgressProvider( ++ double timestamp, ++ double duration, ++ double delay, ++ const EasingFunction &easingFunction, ++ double reversingShorteningFactor); ++ ++ double getGlobalProgress() const override; ++ double getKeyframeProgress(double fromOffset, double toOffset) const override; ++ double getRemainingDelay(double timestamp) const; ++ double getReversingShorteningFactor() const; ++ TransitionProgressState getState() const; ++ ++ protected: ++ std::optional calculateRawProgress(double timestamp) override; ++ ++ private: ++ EasingFunction easingFunction_; ++ double reversingShorteningFactor_ = 1; ++ ++ double getElapsedTime(double timestamp) const; ++}; ++ ++using TransitionPropertyProgressProviders = std::unordered_map< ++ std::string, ++ std::shared_ptr>; ++ ++class TransitionProgressProvider final { ++ public: ++ TransitionProgressState getState() const; ++ double getMinDelay(double timestamp) const; ++ TransitionPropertyProgressProviders getPropertyProgressProviders() const; ++ std::unordered_set getRemovedProperties() const; ++ ++ void discardFinishedProgressProviders(); ++ void discardIrrelevantProgressProviders( ++ const std::unordered_set &transitionPropertyNames); ++ void runProgressProviders( ++ double timestamp, ++ const CSSTransitionPropertiesSettings &propertiesSettings, ++ const PropertyNames &changedPropertyNames, ++ const std::unordered_set &reversedPropertyNames); ++ void update(double timestamp); ++ ++ private: ++ TransitionPropertyProgressProviders propertyProgressProviders_; ++ ++ std::unordered_set removedProperties_; ++ ++ std::shared_ptr ++ createReversingShorteningProgressProvider( ++ double timestamp, ++ const CSSTransitionPropertySettings &propertySettings, ++ const TransitionPropertyProgressProvider &existingProgressProvider); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSAnimationsRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSAnimationsRegistry.h +new file mode 100644 +index 0000000..c9330a1 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSAnimationsRegistry.h +@@ -0,0 +1,95 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using CSSAnimationsMap = ++ std::unordered_map>; ++using CSSAnimationsVector = std::vector>; ++ ++class CSSAnimationsRegistry ++ : public UpdatesRegistry, ++ std::enable_shared_from_this { ++ public: ++ using SettingsUpdates = ++ std::vector>; ++ ++ bool isEmpty() const override; ++ bool hasUpdates() const; ++ ++ void apply( ++ jsi::Runtime &rt, ++ const std::shared_ptr &shadowNode, ++ const std::optional> &animationNames, ++ const CSSAnimationsMap &newAnimations, ++ const CSSAnimationSettingsUpdatesMap &settingsUpdates, ++ double timestamp); ++ void remove(Tag viewTag) override; ++ ++ void update(double timestamp); ++ ++ private: ++ using AnimationToIndexMap = ++ std::unordered_map, size_t>; ++ using RunningAnimationIndicesMap = std::unordered_map>; ++ using AnimationsToRevertMap = ++ std::unordered_map>; ++ struct RegistryEntry { ++ const CSSAnimationsVector animationsVector; ++ const AnimationToIndexMap animationToIndexMap; ++ }; ++ ++ using Registry = std::unordered_map; ++ ++ Registry registry_; ++ ++ RunningAnimationIndicesMap runningAnimationIndicesMap_; ++ AnimationsToRevertMap animationsToRevertMap_; ++ DelayedItemsManager> delayedAnimationsManager_; ++ ++ CSSAnimationsVector buildAnimationsVector( ++ jsi::Runtime &rt, ++ const std::shared_ptr &shadowNode, ++ const std::optional> &animationNames, ++ const std::optional &newAnimations) const; ++ AnimationToIndexMap buildAnimationToIndexMap( ++ const CSSAnimationsVector &animationsVector) const; ++ void updateAnimationSettings( ++ const CSSAnimationsVector &animationsVector, ++ const CSSAnimationSettingsUpdatesMap &settingsUpdates, ++ double timestamp); ++ ++ void updateViewAnimations( ++ Tag viewTag, ++ const std::vector &animationIndices, ++ double timestamp, ++ bool addToBatch); ++ void scheduleOrActivateAnimation( ++ size_t animationIndex, ++ const std::shared_ptr &animation, ++ double timestamp); ++ void removeViewAnimations(Tag viewTag); ++ void applyViewAnimationsStyle(Tag viewTag, double timestamp); ++ void activateDelayedAnimations(double timestamp); ++ void handleAnimationsToRevert(double timestamp); ++ ++ static bool addStyleUpdates( ++ folly::dynamic &target, ++ const folly::dynamic &updates, ++ bool shouldOverride); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSKeyframesRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSKeyframesRegistry.h +new file mode 100644 +index 0000000..c253890 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSKeyframesRegistry.h +@@ -0,0 +1,38 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class CSSKeyframesRegistry { ++ public: ++ CSSKeyframesRegistry( ++ const std::shared_ptr &viewStylesRepository); ++ ++ const CSSKeyframesConfig &get( ++ const std::string &animationName, ++ const std::string &componentName); ++ void set( ++ const std::string &animationName, ++ const std::string &componentName, ++ CSSKeyframesConfig &&config); ++ void remove( ++ const std::string &animationName, ++ const std::string &componentName); ++ ++ private: ++ using ConfigsByComponentName = ++ std::unordered_map; ++ ++ std::unordered_map registry_; ++ const std::shared_ptr viewStylesRepository_; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSTransitionsRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSTransitionsRegistry.h +new file mode 100644 +index 0000000..c0aa7a6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSTransitionsRegistry.h +@@ -0,0 +1,56 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class CSSTransitionsRegistry ++ : public UpdatesRegistry, ++ public std::enable_shared_from_this { ++ public: ++ CSSTransitionsRegistry( ++ const std::shared_ptr &staticPropsRegistry, ++ const GetAnimationTimestampFunction &getCurrentTimestamp); ++ ++ bool isEmpty() const override; ++ bool hasUpdates() const; ++ ++ void add(const std::shared_ptr &transition); ++ void updateSettings(Tag viewTag, const PartialCSSTransitionConfig &config); ++ void remove(Tag viewTag) override; ++ ++ void update(double timestamp); ++ ++ private: ++ using Registry = std::unordered_map>; ++ ++ const GetAnimationTimestampFunction &getCurrentTimestamp_; ++ const std::shared_ptr staticPropsRegistry_; ++ ++ Registry registry_; ++ ++ std::unordered_set runningTransitionTags_; ++ DelayedItemsManager delayedTransitionsManager_; ++ ++ void activateDelayedTransitions(double timestamp); ++ void scheduleOrActivateTransition( ++ const std::shared_ptr &transition); ++ PropsObserver createPropsObserver(Tag viewTag); ++ void updateInUpdatesRegistry( ++ const std::shared_ptr &transition, ++ const folly::dynamic &updates); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/StaticPropsRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/StaticPropsRegistry.h +new file mode 100644 +index 0000000..2b14815 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/StaticPropsRegistry.h +@@ -0,0 +1,37 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++using namespace react; ++ ++using PropsObserver = std::function< ++ void(const folly::dynamic &oldProps, const folly::dynamic &newProps)>; ++ ++class StaticPropsRegistry { ++ public: ++ void set(jsi::Runtime &rt, Tag viewTag, const jsi::Value &props); ++ folly::dynamic get(Tag viewTag) const; ++ bool has(Tag viewTag) const; ++ void remove(Tag viewTag); ++ bool isEmpty() const; ++ ++ bool hasObservers(Tag viewTag) const; ++ void setObserver(Tag viewTag, PropsObserver observer); ++ void removeObserver(Tag viewTag); ++ ++ private: ++ std::unordered_map registry_; ++ std::unordered_map observers_; ++ ++ void notifyObservers( ++ Tag viewTag, ++ const folly::dynamic &oldProps, ++ const folly::dynamic &newProps); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGLength.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGLength.h +new file mode 100644 +index 0000000..421de88 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGLength.h +@@ -0,0 +1,36 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++struct SVGLength : public CSSSimpleValue { ++ double value; ++ bool isPercentage; ++ ++ SVGLength(); ++ explicit SVGLength(double value); ++ explicit SVGLength(double value, bool isPercentage); ++ explicit SVGLength(const char *value); ++ explicit SVGLength(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit SVGLength(const folly::dynamic &value); ++ ++ static bool canConstruct(const std::string &value); ++ static bool canConstruct(const char *value); ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ SVGLength interpolate(double progress, const SVGLength &to) const override; ++ ++ bool operator==(const SVGLength &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const SVGLength &dimension); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGStrokeDashArray.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGStrokeDashArray.h +new file mode 100644 +index 0000000..79388d2 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGStrokeDashArray.h +@@ -0,0 +1,36 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++struct SVGStrokeDashArray : public CSSSimpleValue { ++ std::vector values; ++ ++ SVGStrokeDashArray(); ++ explicit SVGStrokeDashArray(const std::vector &values); ++ explicit SVGStrokeDashArray(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit SVGStrokeDashArray(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ SVGStrokeDashArray interpolate(double progress, const SVGStrokeDashArray &to) ++ const override; ++ ++ bool operator==(const SVGStrokeDashArray &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const SVGStrokeDashArray &strokeDashArray); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/DelayedItemsManager.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/DelayedItemsManager.h +new file mode 100644 +index 0000000..5f6292b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/DelayedItemsManager.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++template ++struct DelayedItem { ++ const double timestamp; ++ const TValue value; ++ ++ DelayedItem(double timestamp, TValue value); ++}; ++ ++template ++struct DelayedItemComparator { ++ bool operator()( ++ const DelayedItem &lhs, ++ const DelayedItem &rhs) const; ++}; ++ ++template ++class DelayedItemsManager { ++ using Item = DelayedItem; ++ using ItemSet = std::set>; ++ using ItemMap = std::unordered_map; ++ ++ ItemSet itemsSet_; ++ ItemMap itemsMap_; ++ ++ public: ++ void add(double timestamp, TValue value); ++ Item pop(); ++ bool remove(TValue value); ++ const Item &top() const; ++ bool empty() const; ++ size_t size() const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/algorithms.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/algorithms.h +new file mode 100644 +index 0000000..1221ae3 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/algorithms.h +@@ -0,0 +1,10 @@ ++#pragma once ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++size_t firstSmallerOrEqual(double x, const std::vector &arr); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/interpolators.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/interpolators.h +new file mode 100644 +index 0000000..01a22ea +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/interpolators.h +@@ -0,0 +1,23 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++std::shared_ptr createPropertyInterpolator( ++ const std::string &propertyName, ++ const PropertyPath &propertyPath, ++ const InterpolatorFactoriesRecord &factories, ++ const std::shared_ptr &viewStylesRepository); ++ ++std::shared_ptr createPropertyInterpolator( ++ size_t arrayIndex, ++ const PropertyPath &propertyPath, ++ const InterpolatorFactoriesArray &factories, ++ const std::shared_ptr &viewStylesRepository); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/keyframes.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/keyframes.h +new file mode 100644 +index 0000000..d7842e6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/keyframes.h +@@ -0,0 +1,15 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++ ++std::vector> parseJSIKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &keyframes); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/props.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/props.h +new file mode 100644 +index 0000000..9c1cecd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/props.h +@@ -0,0 +1,36 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++struct ChangedProps { ++ const folly::dynamic oldProps; ++ const folly::dynamic newProps; ++ const PropertyNames changedPropertyNames; ++}; ++ ++bool isDiscreteProperty( ++ const std::string &propName, ++ const std::string &componentName); ++ ++// We need to specify it here because there are 2 methods referencing ++// each other in the recursion and areArraysDifferentRecursive must be ++// aware that getChangedPropsRecursive exists ++std::pair getChangedPropsRecursive( ++ const folly::dynamic &oldProp, ++ const folly::dynamic &newProp); ++ ++ChangedProps getChangedProps( ++ const folly::dynamic &oldProps, ++ const folly::dynamic &newProps, ++ const PropertyNames &allowedProperties); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitHook.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitHook.h +new file mode 100644 +index 0000000..1ca39bf +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitHook.h +@@ -0,0 +1,51 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++ ++using namespace facebook::react; ++ ++namespace reanimated { ++ ++class ReanimatedCommitHook ++ : public UIManagerCommitHook, ++ public std::enable_shared_from_this { ++ public: ++ ReanimatedCommitHook( ++ const std::shared_ptr &uiManager, ++ const std::shared_ptr &updatesRegistryManager, ++ const std::shared_ptr &layoutAnimationsProxy); ++ ++ ~ReanimatedCommitHook() noexcept override; ++ ++ void commitHookWasRegistered(UIManager const &) noexcept override {} ++ ++ void commitHookWasUnregistered(UIManager const &) noexcept override {} ++ ++ void maybeInitializeLayoutAnimations(SurfaceId surfaceId); ++ ++ RootShadowNode::Unshared shadowTreeWillCommit( ++ ShadowTree const &shadowTree, ++ RootShadowNode::Shared const &oldRootShadowNode, ++ RootShadowNode::Unshared const &newRootShadowNode ++#if REACT_NATIVE_MINOR_VERSION >= 80 ++ , ++ const ShadowTreeCommitOptions &commitOptions ++#endif ++ ) noexcept override; ++ ++ private: ++ std::shared_ptr uiManager_; ++ std::shared_ptr updatesRegistryManager_; ++ std::shared_ptr layoutAnimationsProxy_; ++ ++ SurfaceId currentMaxSurfaceId_ = -1; ++ ++ std::mutex mutex_; // Protects `currentMaxSurfaceId_`. ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitShadowNode.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitShadowNode.h +new file mode 100644 +index 0000000..5263921 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitShadowNode.h +@@ -0,0 +1,46 @@ ++#pragma once ++ ++#include ++ ++using namespace facebook::react; ++ ++namespace reanimated { ++ ++// We use this trait to mark that a commit was created by Reanimated. ++// Traits are copied when nodes are cloned, so this information ++// won't be lost unless someone explicitly overrides it. ++// We need this information to skip unnecessary updates in ++// the commit hook. ++// Currently RN traits go up to 10, so hopefully ++// the arbitrarily chosen numbers 27 and 28 will be safe :) ++ ++// We have to use 2 traits, because we want to distinguish reanimated ++// commits both in the commit hook and mount hook. If we only had one trait ++// and didn't remove it in the commit hook, then any node that would clone ++// this node would also have our commit trait, rendering this trait useless. ++constexpr ShadowNodeTraits::Trait ReanimatedCommitTrait{1 << 27}; ++constexpr ShadowNodeTraits::Trait ReanimatedMountTrait{1 << 28}; ++ ++class ReanimatedCommitShadowNode : public ShadowNode { ++ public: ++ inline void setReanimatedCommitTrait() { ++ traits_.set(ReanimatedCommitTrait); ++ } ++ inline void unsetReanimatedCommitTrait() { ++ traits_.unset(ReanimatedCommitTrait); ++ } ++ inline bool hasReanimatedCommitTrait() { ++ return traits_.check(ReanimatedCommitTrait); ++ } ++ inline void setReanimatedMountTrait() { ++ traits_.set(ReanimatedMountTrait); ++ } ++ inline void unsetReanimatedMountTrait() { ++ traits_.unset(ReanimatedMountTrait); ++ } ++ inline bool hasReanimatedMountTrait() { ++ return traits_.check(ReanimatedMountTrait); ++ } ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedMountHook.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedMountHook.h +new file mode 100644 +index 0000000..ea077dd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedMountHook.h +@@ -0,0 +1,37 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook::react; ++ ++class ReanimatedMountHook : public UIManagerMountHook { ++ public: ++ ReanimatedMountHook( ++ const std::shared_ptr &uiManager, ++ const std::shared_ptr &updatesRegistryManager, ++ const std::function &requestFlush); ++ ~ReanimatedMountHook() noexcept override; ++ ++ void shadowTreeDidMount( ++ RootShadowNode::Shared const &rootShadowNode, ++#if REACT_NATIVE_MINOR_VERSION >= 81 ++ HighResTimeStamp /*unmountTime*/ ++#else ++ double /*unmountTime*/ ++#endif // REACT_NATIVE_MINOR_VERSION >= 81 ++ ) noexcept override; ++ ++ private: ++ const std::shared_ptr uiManager_; ++ const std::shared_ptr updatesRegistryManager_; ++ const std::function requestFlush_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ShadowTreeCloner.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ShadowTreeCloner.h +new file mode 100644 +index 0000000..278ae1e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ShadowTreeCloner.h +@@ -0,0 +1,26 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++using PropsMap = ++ std::unordered_map>; ++using ChildrenMap = ++ std::unordered_map>; ++ ++RootShadowNode::Unshared cloneShadowTreeWithNewProps( ++ const RootShadowNode &oldRootNode, ++ const PropsMap &propsMap); ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/AnimatedPropsRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/AnimatedPropsRegistry.h +new file mode 100644 +index 0000000..57c2c24 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/AnimatedPropsRegistry.h +@@ -0,0 +1,19 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++class AnimatedPropsRegistry : public UpdatesRegistry { ++ public: ++ void update(jsi::Runtime &rt, const jsi::Value &operations); ++ void remove(Tag tag) override; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistry.h +new file mode 100644 +index 0000000..6f32763 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistry.h +@@ -0,0 +1,78 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace react; ++ ++using UpdatesBatch = ++ std::vector, folly::dynamic>>; ++using RegistryMap = std::unordered_map< ++ Tag, ++ std::pair, folly::dynamic>>; ++ ++#ifdef ANDROID ++struct PropsToRevert { ++ std::shared_ptr shadowNode; ++ std::unordered_set props; ++}; ++ ++using PropsToRevertMap = std::unordered_map; ++#endif ++ ++class UpdatesRegistry { ++ public: ++ virtual ~UpdatesRegistry() {} ++ ++ std::lock_guard lock() const; ++ ++ virtual bool isEmpty() const; ++ folly::dynamic get(Tag tag) const; ++ virtual void remove(Tag tag) = 0; ++ ++#ifdef ANDROID ++ bool hasPropsToRevert() const; ++ void collectPropsToRevert(PropsToRevertMap &propsToRevertMap); ++#endif ++ ++ void flushUpdates(UpdatesBatch &updatesBatch); ++ void collectProps(PropsMap &propsMap); ++ ++ protected: ++ mutable std::mutex mutex_; ++ RegistryMap updatesRegistry_; ++ ++ void addUpdatesToBatch( ++ const std::shared_ptr &shadowNode, ++ const folly::dynamic &props); ++ folly::dynamic getUpdatesFromRegistry(const Tag tag) const; ++ void setInUpdatesRegistry( ++ const std::shared_ptr &shadowNode, ++ const folly::dynamic &props); ++ void removeFromUpdatesRegistry(Tag tag); ++ ++ private: ++ UpdatesBatch updatesBatch_; ++ ++ void flushUpdatesToRegistry(const UpdatesBatch &updatesBatch); ++ ++#ifdef ANDROID ++ PropsToRevertMap propsToRevertMap_; ++ ++ void updatePropsToRevert(Tag tag, const folly::dynamic *newProps = nullptr); ++#endif ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistryManager.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistryManager.h +new file mode 100644 +index 0000000..b5a54cb +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistryManager.h +@@ -0,0 +1,70 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace css; ++ ++class UpdatesRegistryManager { ++ public: ++ explicit UpdatesRegistryManager( ++ const std::shared_ptr &staticPropsRegistry); ++ ++ std::lock_guard lock() const; ++ ++ // TODO - ensure that other sublibraries can easily hook into this registry ++ // manager (e.g. add priority to registries) ++ void addRegistry(const std::shared_ptr ®istry); ++ ++ void pauseReanimatedCommits(); ++ bool shouldReanimatedSkipCommit(); ++ void unpauseReanimatedCommits(); ++ ++ void pleaseCommitAfterPause(); ++ bool shouldCommitAfterPause(); ++ void cancelCommitAfterPause(); ++ ++ void markNodeAsRemovable(const std::shared_ptr &shadowNode); ++ void unmarkNodeAsRemovable(Tag viewTag); ++ void handleNodeRemovals(const RootShadowNode &rootShadowNode); ++ PropsMap collectProps(); ++ ++#ifdef ANDROID ++ bool hasPropsToRevert(); ++ void collectPropsToRevertBySurface( ++ std::unordered_map &propsMapBySurface); ++ void clearPropsToRevert(SurfaceId surfaceId); ++#endif ++ ++ private: ++ using RemovableShadowNodes = ++ std::unordered_map>; ++ ++ mutable std::mutex mutex_; ++ std::atomic isPaused_; ++ std::atomic shouldCommitAfterPause_; ++ RemovableShadowNodes removableShadowNodes_; ++ std::vector> registries_; ++ const std::shared_ptr staticPropsRegistry_; ++ ++#ifdef ANDROID ++ PropsToRevertMap propsToRevertMap_; ++ ++ static void addToPropsMap( ++ PropsMap &propsMap, ++ const std::shared_ptr &shadowNode, ++ const folly::dynamic &props); ++#endif ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationType.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationType.h +new file mode 100644 +index 0000000..6c36ae0 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationType.h +@@ -0,0 +1,7 @@ ++#pragma once ++ ++typedef enum LayoutAnimationType { ++ ENTERING = 1, ++ EXITING = 2, ++ LAYOUT = 3, ++} LayoutAnimationType; +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsManager.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsManager.h +new file mode 100644 +index 0000000..5e9d3ca +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsManager.h +@@ -0,0 +1,64 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace worklets; ++ ++struct LayoutAnimationConfig { ++ int tag; ++ LayoutAnimationType type; ++ std::shared_ptr config; ++}; ++ ++class LayoutAnimationsManager { ++ public: ++ explicit LayoutAnimationsManager(const std::shared_ptr &jsLogger) ++ : jsLogger_(jsLogger) {} ++ void configureAnimationBatch( ++ const std::vector &layoutAnimationsBatch); ++ void setShouldAnimateExiting(const int tag, const bool value); ++ bool shouldAnimateExiting(const int tag, const bool shouldAnimate); ++ bool hasLayoutAnimation(const int tag, const LayoutAnimationType type); ++ void startLayoutAnimation( ++ jsi::Runtime &rt, ++ const int tag, ++ const LayoutAnimationType type, ++ const jsi::Object &values); ++ void clearLayoutAnimationConfig(const int tag); ++ void cancelLayoutAnimation(jsi::Runtime &rt, const int tag) const; ++ void transferConfigFromNativeID(const int nativeId, const int tag); ++ ++ private: ++ std::unordered_map> &getConfigsForType( ++ const LayoutAnimationType type); ++ ++ std::shared_ptr jsLogger_; ++ ++ std::unordered_map> ++ enteringAnimationsForNativeID_; ++ std::unordered_map> enteringAnimations_; ++ std::unordered_map> exitingAnimations_; ++ std::unordered_map> layoutAnimations_; ++ std::unordered_map shouldAnimateExitingForTag_; ++ mutable std::recursive_mutex ++ animationsMutex_; // Protects `enteringAnimations_`, `exitingAnimations_`, ++ // `layoutAnimations_` and `shouldAnimateExitingForTag_`. ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsProxy.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsProxy.h +new file mode 100644 +index 0000000..8930af9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsProxy.h +@@ -0,0 +1,140 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++class ReanimatedModuleProxy; ++ ++using namespace facebook; ++ ++struct LayoutAnimation { ++ std::shared_ptr finalView, currentView; ++ Tag parentTag; ++ std::optional opacity; ++ int count = 1; ++ LayoutAnimation &operator=(const LayoutAnimation &other) = default; ++}; ++ ++struct LayoutAnimationsProxy ++ : public MountingOverrideDelegate, ++ public std::enable_shared_from_this { ++ mutable std::unordered_map> nodeForTag_; ++ mutable std::unordered_map layoutAnimations_; ++ mutable std::recursive_mutex mutex; ++ mutable SurfaceManager surfaceManager; ++ mutable std::unordered_set> deadNodes; ++ mutable std::unordered_map leastRemoved; ++ mutable std::vector finishedAnimationTags_; ++ std::shared_ptr layoutAnimationsManager_; ++ std::shared_ptr contextContainer_; ++ SharedComponentDescriptorRegistry componentDescriptorRegistry_; ++ jsi::Runtime &uiRuntime_; ++ const std::shared_ptr uiScheduler_; ++ LayoutAnimationsProxy( ++ std::shared_ptr layoutAnimationsManager, ++ SharedComponentDescriptorRegistry componentDescriptorRegistry, ++ std::shared_ptr contextContainer, ++ jsi::Runtime &uiRuntime, ++ const std::shared_ptr uiScheduler) ++ : layoutAnimationsManager_(layoutAnimationsManager), ++ contextContainer_(contextContainer), ++ componentDescriptorRegistry_(componentDescriptorRegistry), ++ uiRuntime_(uiRuntime), ++ uiScheduler_(uiScheduler) {} ++ ++ void startEnteringAnimation(const int tag, ShadowViewMutation &mutation) ++ const; ++ void startExitingAnimation(const int tag, ShadowViewMutation &mutation) const; ++ void startLayoutAnimation(const int tag, const ShadowViewMutation &mutation) ++ const; ++ ++ void transferConfigFromNativeID(const std::string nativeId, const int tag) ++ const; ++ std::optional progressLayoutAnimation( ++ int tag, ++ const jsi::Object &newStyle); ++ std::optional endLayoutAnimation(int tag, bool shouldRemove); ++ void maybeCancelAnimation(const int tag) const; ++ ++ void parseRemoveMutations( ++ std::unordered_map &movedViews, ++ ShadowViewMutationList &mutations, ++ std::vector> &roots) const; ++ void handleRemovals( ++ ShadowViewMutationList &filteredMutations, ++ std::vector> &roots) const; ++ ++ void handleUpdatesAndEnterings( ++ ShadowViewMutationList &filteredMutations, ++ const std::unordered_map &movedViews, ++ ShadowViewMutationList &mutations, ++ const PropsParserContext &propsParserContext, ++ SurfaceId surfaceId) const; ++ void addOngoingAnimations( ++ SurfaceId surfaceId, ++ ShadowViewMutationList &mutations) const; ++ void updateOngoingAnimationTarget( ++ const int tag, ++ const ShadowViewMutation &mutation) const; ++ std::shared_ptr cloneViewWithoutOpacity( ++ facebook::react::ShadowViewMutation &mutation, ++ const PropsParserContext &propsParserContext) const; ++ void maybeRestoreOpacity( ++ LayoutAnimation &layoutAnimation, ++ const jsi::Object &newStyle) const; ++ void maybeUpdateWindowDimensions( ++ facebook::react::ShadowViewMutation &mutation, ++ SurfaceId surfaceId) const; ++ void createLayoutAnimation( ++ const ShadowViewMutation &mutation, ++ ShadowView &oldView, ++ const SurfaceId &surfaceId, ++ const int tag) const; ++ ++ void updateIndexForMutation(ShadowViewMutation &mutation) const; ++ ++ void removeRecursively( ++ std::shared_ptr node, ++ ShadowViewMutationList &mutations) const; ++ bool startAnimationsRecursively( ++ std::shared_ptr node, ++ const bool shouldRemoveSubviewsWithoutAnimations, ++ const bool shouldAnimate, ++ const bool isScreenPop, ++ ShadowViewMutationList &mutations) const; ++ void endAnimationsRecursively( ++ std::shared_ptr node, ++ ShadowViewMutationList &mutations) const; ++ void maybeDropAncestors( ++ std::shared_ptr node, ++ std::shared_ptr child, ++ ShadowViewMutationList &cleanupMutations) const; ++ ++ const ComponentDescriptor &getComponentDescriptorForShadowView( ++ const ShadowView &shadowView) const; ++ ++ // MountingOverrideDelegate ++ ++ bool shouldOverridePullTransaction() const override; ++ std::optional pullTransaction( ++ SurfaceId surfaceId, ++ MountingTransaction::Number number, ++ const TransactionTelemetry &telemetry, ++ ShadowViewMutationList mutations) const override; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsUtils.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsUtils.h +new file mode 100644 +index 0000000..8cf936a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsUtils.h +@@ -0,0 +1,174 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++struct Rect { ++ double width, height; ++}; ++ ++struct Frame { ++ std::optional x, y, width, height; ++ Frame(jsi::Runtime &runtime, const jsi::Object &newStyle) { ++ if (newStyle.hasProperty(runtime, "originX")) { ++ x = newStyle.getProperty(runtime, "originX").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "originY")) { ++ y = newStyle.getProperty(runtime, "originY").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "width")) { ++ width = newStyle.getProperty(runtime, "width").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "height")) { ++ height = newStyle.getProperty(runtime, "height").asNumber(); ++ } ++ } ++}; ++ ++struct UpdateValues { ++ Props::Shared newProps; ++ Frame frame; ++}; ++ ++struct Snapshot { ++ double x, y, width, height, windowWidth, windowHeight; ++ Snapshot(const ShadowView &shadowView, Rect window) { ++ const auto &frame = shadowView.layoutMetrics.frame; ++ x = frame.origin.x; ++ y = frame.origin.y; ++ width = frame.size.width; ++ height = frame.size.height; ++ windowWidth = window.width; ++ windowHeight = window.height; ++ } ++}; ++ ++typedef enum ExitingState { ++ UNDEFINED = 1, ++ WAITING = 2, ++ ANIMATING = 4, ++ DEAD = 8, ++ MOVED = 16, ++ DELETED = 32, ++} ExitingState; ++ ++struct MutationNode; ++ ++/** ++ Represents a view that was either removed or had a child removed from the ++ ShadowTree ++ */ ++struct Node { ++ std::vector> children, unflattenedChildren; ++ std::shared_ptr parent, unflattenedParent; ++ Tag tag; ++ void removeChildFromUnflattenedTree(std::shared_ptr child); ++ void applyMutationToIndices(ShadowViewMutation mutation); ++ void insertChildren(std::vector> &newChildren); ++ void insertUnflattenedChildren( ++ std::vector> &newChildren); ++ virtual bool isMutationMode(); ++ explicit Node(const Tag tag) : tag(tag) {} ++ Node(Node &&node) ++ : children(std::move(node.children)), ++ unflattenedChildren(std::move(node.unflattenedChildren)), ++ tag(node.tag) {} ++ Node(Node &node) ++ : children(node.children), ++ unflattenedChildren(node.unflattenedChildren), ++ tag(node.tag) {} ++ virtual ~Node() = default; ++}; ++ ++/** ++ Represents a view that was removed from the ShadowTree ++ */ ++struct MutationNode : public Node { ++ ShadowViewMutation mutation; ++ ExitingState state = UNDEFINED; ++ explicit MutationNode(ShadowViewMutation &mutation) ++ : Node(mutation.oldChildShadowView.tag), mutation(mutation) {} ++ MutationNode(ShadowViewMutation &mutation, Node &&node) ++ : Node(std::move(node)), mutation(mutation) {} ++ bool isMutationMode() override; ++}; ++ ++struct SurfaceManager { ++ mutable std::unordered_map< ++ SurfaceId, ++ std::shared_ptr>> ++ props_; ++ mutable std::unordered_map windows_; ++ ++ std::unordered_map &getUpdateMap(SurfaceId surfaceId); ++ void ++ updateWindow(SurfaceId surfaceId, double windowWidth, double windowHeight); ++ Rect getWindow(SurfaceId surfaceId); ++}; ++ ++static inline void updateLayoutMetrics( ++ LayoutMetrics &layoutMetrics, ++ Frame &frame) { ++ // we use optional's here to avoid overwriting non-animated values ++ if (frame.width) { ++ layoutMetrics.frame.size.width = *frame.width; ++ } ++ if (frame.height) { ++ layoutMetrics.frame.size.height = *frame.height; ++ } ++ if (frame.x) { ++ layoutMetrics.frame.origin.x = *frame.x; ++ } ++ if (frame.y) { ++ layoutMetrics.frame.origin.y = *frame.y; ++ } ++} ++ ++static inline bool isRNSScreen(std::shared_ptr node) { ++ const auto &componentName = node->mutation.oldChildShadowView.componentName; ++ return !std::strcmp(componentName, "RNSScreenStack") || ++ !std::strcmp(componentName, "RNSScreen") || ++ !std::strcmp(componentName, "RNSModalScreen"); ++} ++ ++static inline bool hasLayoutChanged(const ShadowViewMutation &mutation) { ++ return mutation.oldChildShadowView.layoutMetrics.frame != ++ mutation.newChildShadowView.layoutMetrics.frame; ++} ++ ++static inline void mergeAndSwap( ++ std::vector> &A, ++ std::vector> &B) { ++ std::vector> merged; ++ auto it1 = A.begin(), it2 = B.begin(); ++ while (it1 != A.end() && it2 != B.end()) { ++ if ((*it1)->mutation.index < (*it2)->mutation.index) { ++ merged.push_back(*it1); ++ it1++; ++ } else { ++ merged.push_back(*it2); ++ it2++; ++ } ++ } ++ while (it1 != A.end()) { ++ merged.push_back(*it1); ++ it1++; ++ } ++ while (it2 != B.end()) { ++ merged.push_back(*it2); ++ it2++; ++ } ++ std::swap(A, merged); ++} ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/PropValueProcessor.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/PropValueProcessor.h +new file mode 100644 +index 0000000..e44f2c6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/PropValueProcessor.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace react; ++ ++class PropValueProcessor { ++ public: ++ static const std::unordered_set layoutProps; ++ static const std::unordered_set styleProps; ++ ++ static std::string processPropValue( ++ const std::string &propName, ++ const std::shared_ptr &shadowNode, ++ jsi::Runtime &rt); ++ ++ private: ++ static std::string processLayoutProp( ++ const std::string &propName, ++ const LayoutableShadowNode *layoutableShadowNode); ++ ++ static std::string processStyleProp( ++ const std::string &propName, ++ const std::shared_ptr &viewProps, ++ jsi::Runtime &rt); ++ ++ static std::string intColorToHex(const int val); ++ ++ static jsi::Object boxShadowPreprocessing( ++ const BoxShadow &boxShadow, ++ jsi::Runtime &rt); ++ ++ static bool isLayoutProp(const std::string &propName); ++ ++ static bool isStyleProp(const std::string &propName); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxy.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxy.h +new file mode 100644 +index 0000000..9e0599a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxy.h +@@ -0,0 +1,265 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace css; ++ ++using UpdatesBatch = ++ std::vector, folly::dynamic>>; ++ ++class ReanimatedModuleProxy ++ : public ReanimatedModuleProxySpec, ++ public std::enable_shared_from_this { ++ public: ++ ReanimatedModuleProxy( ++ const std::shared_ptr &workletsModuleProxy, ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &jsCallInvoker, ++ const PlatformDepMethodsHolder &platformDepMethodsHolder, ++ const bool isReducedMotion); ++ ++ // We need this init method to initialize callbacks with ++ // weak_from_this() which is available only after the object ++ // is fully constructed. ++ void init(const PlatformDepMethodsHolder &platformDepMethodsHolder); ++ ++ ~ReanimatedModuleProxy(); ++ ++ jsi::Value registerEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value &worklet, ++ const jsi::Value &eventName, ++ const jsi::Value &emitterReactTag) override; ++ void unregisterEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value ®istrationId) override; ++ ++ jsi::Value getViewProp( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &propName, ++ const jsi::Value &callback) override; ++ ++ jsi::Value getStaticFeatureFlag(jsi::Runtime &rt, const jsi::Value &name) ++ override; ++ jsi::Value setDynamicFeatureFlag( ++ jsi::Runtime &rt, ++ const jsi::Value &name, ++ const jsi::Value &value) override; ++ ++ jsi::Value configureLayoutAnimationBatch( ++ jsi::Runtime &rt, ++ const jsi::Value &layoutAnimationsBatch) override; ++ void setShouldAnimateExiting( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &shouldAnimate) override; ++ ++ void onRender(double timestampMs); ++ ++ bool isAnyHandlerWaitingForEvent( ++ const std::string &eventName, ++ const int emitterReactTag); ++ ++ void maybeRequestRender(); ++ ++ bool handleEvent( ++ const std::string &eventName, ++ const int emitterReactTag, ++ const jsi::Value &payload, ++ double currentTime); ++ ++ inline std::shared_ptr getJSLogger() const { ++ return jsLogger_; ++ } ++ ++ bool handleRawEvent(const RawEvent &rawEvent, double currentTime); ++ ++ void maybeRunCSSLoop(); ++ double getCssTimestamp(); ++ ++ void performOperations(); ++ ++ void setViewStyle( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &viewStyle) override; ++ ++ void markNodeAsRemovable( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper) override; ++ void unmarkNodeAsRemovable(jsi::Runtime &rt, const jsi::Value &viewTag) ++ override; ++ ++ void registerCSSKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &animationName, ++ const jsi::Value &viewName, ++ const jsi::Value &keyframesConfig) override; ++ void unregisterCSSKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &animationName, ++ const jsi::Value &viewName) override; ++ ++ void applyCSSAnimations( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &animationUpdates) override; ++ void unregisterCSSAnimations(const jsi::Value &viewTag) override; ++ ++ void registerCSSTransition( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &transitionConfig) override; ++ void updateCSSTransition( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &configUpdates) override; ++ void unregisterCSSTransition(jsi::Runtime &rt, const jsi::Value &viewTag) ++ override; ++ ++ void cssLoopCallback(const double /*timestampMs*/); ++ ++ void dispatchCommand( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeValue, ++ const jsi::Value &commandNameValue, ++ const jsi::Value &argsValue); ++ ++ jsi::String obtainProp( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &propName); ++ ++ jsi::Value measure(jsi::Runtime &rt, const jsi::Value &shadowNodeValue); ++ ++ void initializeFabric(const std::shared_ptr &uiManager); ++ ++ void initializeLayoutAnimationsProxy(); ++ ++ std::string obtainPropFromShadowNode( ++ jsi::Runtime &rt, ++ const std::string &propName, ++ const std::shared_ptr &shadowNode); ++ ++ jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer) override; ++ void unregisterSensor(jsi::Runtime &rt, const jsi::Value &sensorId) override; ++ ++ void cleanupSensors(); ++ ++ jsi::Value subscribeForKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &keyboardEventContainer, ++ const jsi::Value &isStatusBarTranslucent, ++ const jsi::Value &isNavigationBarTranslucent) override; ++ void unsubscribeFromKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &listenerId) override; ++ ++ inline LayoutAnimationsManager &layoutAnimationsManager() { ++ return *layoutAnimationsManager_; ++ } ++ ++ [[nodiscard]] inline bool isReducedMotion() const { ++ return isReducedMotion_; ++ } ++ ++ [[nodiscard]] inline std::shared_ptr ++ getWorkletsModuleProxy() const { ++ return workletsModuleProxy_; ++ } ++ ++ void requestFlushRegistry(); ++ std::function createRegistriesLeakCheck(); ++ ++ private: ++ void commitUpdates(jsi::Runtime &rt, const UpdatesBatch &updatesBatch); ++ ++ const bool isReducedMotion_; ++ bool shouldFlushRegistry_ = false; ++ std::shared_ptr workletsModuleProxy_; ++ ++ std::unique_ptr eventHandlerRegistry_; ++ const RequestRenderFunction requestRender_; ++ std::vector> frameCallbacks_; ++ volatile bool renderRequested_{false}; ++ std::function onRenderCallback_; ++ AnimatedSensorModule animatedSensorModule_; ++ const std::shared_ptr jsLogger_; ++ std::shared_ptr layoutAnimationsManager_; ++ GetAnimationTimestampFunction getAnimationTimestamp_; ++ ++ bool cssLoopRunning_{false}; ++ bool shouldUpdateCssAnimations_{true}; ++ double currentCssTimestamp_{0}; ++ ++ const std::shared_ptr animatedPropsRegistry_; ++ const std::shared_ptr staticPropsRegistry_; ++ const std::shared_ptr updatesRegistryManager_; ++ const std::shared_ptr viewStylesRepository_; ++ const std::shared_ptr cssAnimationKeyframesRegistry_; ++ const std::shared_ptr cssAnimationsRegistry_; ++ const std::shared_ptr cssTransitionsRegistry_; ++ ++ const SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction_; ++ ++ std::shared_ptr uiManager_; ++ std::shared_ptr layoutAnimationsProxy_; ++ std::shared_ptr commitHook_; ++ std::shared_ptr mountHook_; ++ std::set layoutAnimationFlushRequests_; ++ bool layoutAnimationRenderRequested_; ++ ++ const KeyboardEventSubscribeFunction subscribeForKeyboardEventsFunction_; ++ const KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEventsFunction_; ++ ++#ifndef NDEBUG ++ worklets::SingleInstanceChecker singleInstanceChecker_; ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxySpec.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxySpec.h +new file mode 100644 +index 0000000..11b281b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxySpec.h +@@ -0,0 +1,125 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++class JSI_EXPORT ReanimatedModuleProxySpec : public TurboModule { ++ protected: ++ explicit ReanimatedModuleProxySpec( ++ const std::shared_ptr &jsInvoker); ++ ++ public: ++ // events ++ virtual jsi::Value registerEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value &worklet, ++ const jsi::Value &eventName, ++ const jsi::Value &emitterReactTag) = 0; ++ virtual void unregisterEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value ®istrationId) = 0; ++ ++ // views ++ virtual jsi::Value getViewProp( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &propName, ++ const jsi::Value &callback) = 0; ++ ++ // sensors ++ virtual jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer) = 0; ++ virtual void unregisterSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorId) = 0; ++ ++ // keyboard ++ virtual jsi::Value subscribeForKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &keyboardEventContainer, ++ const jsi::Value &isStatusBarTranslucent, ++ const jsi::Value &isNavigationBarTranslucent) = 0; ++ virtual void unsubscribeFromKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &listenerId) = 0; ++ ++ // feature flags ++ virtual jsi::Value getStaticFeatureFlag( ++ jsi::Runtime &rt, ++ const jsi::Value &name) = 0; ++ ++ virtual jsi::Value setDynamicFeatureFlag( ++ jsi::Runtime &rt, ++ const jsi::Value &name, ++ const jsi::Value &value) = 0; ++ ++ // layout animations ++ virtual jsi::Value configureLayoutAnimationBatch( ++ jsi::Runtime &rt, ++ const jsi::Value &layoutAnimationsBatch) = 0; ++ ++ virtual void setShouldAnimateExiting( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &shouldAnimate) = 0; ++ ++ // JS View style ++ virtual void setViewStyle( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &viewStyle) = 0; ++ ++ // Cleanup ++ virtual void markNodeAsRemovable( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper) = 0; ++ virtual void unmarkNodeAsRemovable( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag) = 0; ++ ++ // CSS animation keyframes ++ virtual void registerCSSKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &animationName, ++ const jsi::Value &viewName, ++ const jsi::Value &keyframesConfig) = 0; ++ virtual void unregisterCSSKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &animationName, ++ const jsi::Value &viewName) = 0; ++ ++ // CSS animations ++ virtual void applyCSSAnimations( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &animationUpdates) = 0; ++ virtual void unregisterCSSAnimations(const jsi::Value &viewTag) = 0; ++ ++ // CSS transitions ++ virtual void registerCSSTransition( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &transitionConfig) = 0; ++ virtual void updateCSSTransition( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &configUpdates) = 0; ++ virtual void unregisterCSSTransition( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag) = 0; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/RNRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/RNRuntimeDecorator.h +new file mode 100644 +index 0000000..0d627de +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/RNRuntimeDecorator.h +@@ -0,0 +1,28 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++class RNRuntimeDecorator { ++ public: ++ static void decorate( ++ jsi::Runtime &rnRuntime, ++ jsi::Runtime &uiRuntime, ++ const std::shared_ptr &reanimatedModuleProxy); ++ ++#ifdef IS_REANIMATED_EXAMPLE_APP ++ private: ++ static void installDebugBindings( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &reanimatedModuleProxy); ++#endif // IS_REANIMATED_EXAMPLE_APP ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/UIRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/UIRuntimeDecorator.h +new file mode 100644 +index 0000000..d46d967 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/UIRuntimeDecorator.h +@@ -0,0 +1,26 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++class UIRuntimeDecorator { ++ public: ++ static void decorate( ++ jsi::Runtime &uiRuntime, ++ const ObtainPropFunction obtainPropFunction, ++ const UpdatePropsFunction updateProps, ++ const MeasureFunction measure, ++ const DispatchCommandFunction dispatchCommand, ++ const GetAnimationTimestampFunction getAnimationTimestamp, ++ const SetGestureStateFunction setGestureState, ++ const ProgressLayoutAnimationFunction progressLayoutAnimation, ++ const EndLayoutAnimationFunction endLayoutAnimation, ++ const MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueue); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/FeatureFlags.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/FeatureFlags.h +new file mode 100644 +index 0000000..b42d685 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/FeatureFlags.h +@@ -0,0 +1,44 @@ ++#pragma once ++#include ++#include ++ ++namespace reanimated { ++ ++class StaticFeatureFlags { ++ public: ++#ifdef REANIMATED_FEATURE_FLAGS ++ ++// Convert the value under x into a string ++#define XTOSTRING(x) #x ++// Evaluate the flag value; without this step, it would stringify the flag name ++// itself instead of the flag value ++#define TOSTRING(x) XTOSTRING(x) ++ ++ static constexpr bool getFlag(const std::string_view &name) { ++ std::string nameStr = name.data(); ++ std::string featureFlags = TOSTRING(REANIMATED_FEATURE_FLAGS); ++ if (featureFlags.find("[" + nameStr + ":") == std::string::npos) { ++ throw std::logic_error("Unable to recognize flag: " + nameStr); ++ } ++ return featureFlags.find("[" + nameStr + ":true]") != std::string::npos; ++ } ++ ++#else ++ ++ static constexpr bool getFlag(const std::string_view &) { ++ return false; ++ } ++ ++#endif ++}; ++ ++class DynamicFeatureFlags { ++ public: ++ static bool getFlag(const std::string &name); ++ static void setFlag(const std::string &name, bool value); ++ ++ private: ++ static std::unordered_map flags_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformDepMethodsHolder.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformDepMethodsHolder.h +new file mode 100644 +index 0000000..dbea4ba +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformDepMethodsHolder.h +@@ -0,0 +1,63 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++using UpdatePropsFunction = ++ std::function; ++using ObtainPropFunction = std::function; ++using DispatchCommandFunction = std::function; ++using MeasureFunction = std::function< ++ jsi::Value(jsi::Runtime &rt, const jsi::Value &shadowNodeValue)>; ++ ++using RequestRenderFunction = ++ std::function)>; ++using SynchronouslyUpdateUIPropsFunction = ++ std::function &, const std::vector &)>; ++using GetAnimationTimestampFunction = std::function; ++ ++using ProgressLayoutAnimationFunction = ++ std::function; ++using EndLayoutAnimationFunction = std::function; ++ ++using RegisterSensorFunction = ++ std::function)>; ++using UnregisterSensorFunction = std::function; ++using SetGestureStateFunction = std::function; ++using KeyboardEventSubscribeFunction = ++ std::function, bool, bool)>; ++using KeyboardEventUnsubscribeFunction = std::function; ++using MaybeFlushUIUpdatesQueueFunction = std::function; ++ ++struct PlatformDepMethodsHolder { ++ RequestRenderFunction requestRender; ++#ifdef ANDROID ++ SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction; ++#endif // ANDROID ++ GetAnimationTimestampFunction getAnimationTimestamp; ++ RegisterSensorFunction registerSensor; ++ UnregisterSensorFunction unregisterSensor; ++ SetGestureStateFunction setGestureStateFunction; ++ KeyboardEventSubscribeFunction subscribeForKeyboardEvents; ++ KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEvents; ++ MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueueFunction; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedSystraceSection.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedSystraceSection.h +new file mode 100644 +index 0000000..c3b17e9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedSystraceSection.h +@@ -0,0 +1,135 @@ ++#pragma once ++#include ++#include ++ ++#ifdef REANIMATED_PROFILING ++ ++#if defined(__APPLE__) ++#include ++ ++#if OS_LOG_TARGET_HAS_10_15_FEATURES ++#include ++#include ++#include ++#endif // OS_LOG_TARGET_HAS_10_15_FEATURES ++ ++#elif defined(ANDROID) ++ ++#include ++ ++#endif // defined(ANDROID) ++ ++#endif // REANIMATED_PROFILING ++ ++namespace reanimated { ++ ++#if defined(ANDROID) && defined(REANIMATED_PROFILING) ++ ++struct ReanimatedSystraceSection { ++ public: ++ template ++ explicit ReanimatedSystraceSection( ++ const char *name, ++ ConvertsToStringPiece &&...args) { ++ ATrace_beginSection(name); ++ } ++ ++ ~ReanimatedSystraceSection() { ++ ATrace_endSection(); ++ } ++}; ++ ++// The apple part is copied from React Native ++// from ++// https://github.com/facebook/react-native/blob/5697d923a05119314b4cfcd556cb243986637764/packages/react-native/ReactCommon/cxxreact/SystraceSection.h ++#elif defined(__APPLE__) && OS_LOG_TARGET_HAS_10_15_FEATURES && \ ++ defined(REANIMATED_PROFILING) ++ ++template ++struct renderer { ++ static std::string render(const T &t) { ++ std::ostringstream oss; ++ oss << t; ++ return oss.str(); ++ } ++}; ++ ++template ++static auto render(const T &t) ++ -> decltype(renderer::render(std::declval())) { ++ return renderer::render(t); ++} ++ ++inline os_log_t instrumentsLogHandle = nullptr; ++ ++static inline os_log_t getOrCreateInstrumentsLogHandle() { ++ if (!instrumentsLogHandle) { ++ instrumentsLogHandle = os_log_create( ++ "dev.reanimated.instruments", OS_LOG_CATEGORY_POINTS_OF_INTEREST); ++ } ++ return instrumentsLogHandle; ++} ++ ++struct ReanimatedSystraceSection { ++ public: ++ template ++ explicit ReanimatedSystraceSection( ++ const char *name, ++ ConvertsToStringPiece &&...args) { ++ os_log_t instrumentsLogHandle = ++ reanimated::getOrCreateInstrumentsLogHandle(); ++ ++ // If the log isn't enabled, we don't want the performance overhead of the ++ // rest of the code below. ++ if (!os_signpost_enabled(instrumentsLogHandle)) { ++ return; ++ } ++ ++ name_ = name; ++ ++ const auto argsVector = ++ std::vector{reanimated::render(args)...}; ++ std::string argsString = ""; ++ for (size_t i = 0; i < argsVector.size(); i += 2) { ++ argsString += argsVector[i] + "=" + argsVector[i + 1] + ";"; ++ } ++ ++ signpostID_ = os_signpost_id_make_with_pointer(instrumentsLogHandle, this); ++ ++ os_signpost_interval_begin( ++ instrumentsLogHandle, ++ signpostID_, ++ "Reanimated", ++ "%s begin: %s", ++ name, ++ argsString.c_str()); ++ } ++ ++ ~ReanimatedSystraceSection() { ++ os_signpost_interval_end( ++ reanimated::instrumentsLogHandle, ++ signpostID_, ++ "Reanimated", ++ "%s end", ++ name_.data()); ++ } ++ ++ private: ++ os_signpost_id_t signpostID_ = OS_SIGNPOST_ID_INVALID; ++ std::string_view name_; ++}; ++ ++#else ++ ++struct ReanimatedSystraceSection { ++ public: ++ template ++ explicit ReanimatedSystraceSection( ++ const char *name, ++ ConvertsToStringPiece &&...args) {} ++}; ++ ++#endif // defined(__APPLE__) && OS_LOG_TARGET_HAS_10_15_FEATURES && ++ // defined(REANIMATED_PROFILING) ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedVersion.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedVersion.h +new file mode 100644 +index 0000000..b490177 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedVersion.h +@@ -0,0 +1,20 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++std::string getReanimatedCppVersion(); ++void injectReanimatedCppVersion(jsi::Runtime &); ++void checkJSVersion( ++ jsi::Runtime &, ++ const std::shared_ptr &); ++ ++}; // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/AnimationFrameCallback.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/AnimationFrameCallback.h +new file mode 100644 +index 0000000..9da8b47 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/AnimationFrameCallback.h +@@ -0,0 +1,37 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class AnimationFrameCallback : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/AnimationFrameCallback;"; ++ ++ void onAnimationFrame(double timestampMs) { ++ callback_(timestampMs); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod( ++ "onAnimationFrame", AnimationFrameCallback::onAnimationFrame), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit AnimationFrameCallback(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/EventHandler.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/EventHandler.h +new file mode 100644 +index 0000000..af9080d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/EventHandler.h +@@ -0,0 +1,48 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class EventHandler : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/EventHandler;"; ++ ++ void receiveEvent( ++ jni::alias_ref eventKey, ++ jint emitterReactTag, ++ jni::alias_ref event) { ++ ReanimatedSystraceSection s("EventHandler::receiveEvent"); ++ handler_(eventKey, emitterReactTag, event); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("receiveEvent", EventHandler::receiveEvent), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit EventHandler(std::function, ++ jint emitterReactTag, ++ jni::alias_ref)> handler) ++ : handler_(std::move(handler)) {} ++ ++ std::function< ++ void(jni::alias_ref, jint, jni::alias_ref)> ++ handler_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/KeyboardWorkletWrapper.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/KeyboardWorkletWrapper.h +new file mode 100644 +index 0000000..72bbba5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/KeyboardWorkletWrapper.h +@@ -0,0 +1,36 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class KeyboardWorkletWrapper : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/keyboard/KeyboardWorkletWrapper;"; ++ ++ void invoke(int keyboardState, int height) { ++ callback_(keyboardState, height); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("invoke", KeyboardWorkletWrapper::invoke), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit KeyboardWorkletWrapper(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/NativeProxy.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/NativeProxy.h +new file mode 100644 +index 0000000..8a811e5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/NativeProxy.h +@@ -0,0 +1,120 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class NativeProxy : public jni::HybridClass, ++ std::enable_shared_from_this { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/NativeProxy;"; ++ static jni::local_ref initHybrid( ++ jni::alias_ref jThis, ++ jni::alias_ref jWorkletsModule, ++ jlong jsContext, ++ jni::alias_ref ++ jsCallInvokerHolder, ++ jni::alias_ref ++ fabricUIManager); ++ ++ static void registerNatives(); ++ ++ ~NativeProxy(); ++ ++ private: ++ friend HybridBase; ++ jni::global_ref javaPart_; ++ jsi::Runtime *rnRuntime_; ++ std::shared_ptr workletsModuleProxy_; ++ std::shared_ptr reanimatedModuleProxy_; ++#ifndef NDEBUG ++ void checkJavaVersion(); ++ void injectCppVersion(); ++#endif // NDEBUG ++ // removed temporarily, event listener mechanism needs to be fixed on RN side ++ // std::shared_ptr reactScheduler_; ++ // std::shared_ptr eventListener_; ++ void installJSIBindings(); ++ void synchronouslyUpdateUIProps( ++ const std::vector &intBuffer, ++ const std::vector &doubleBuffer); ++ PlatformDepMethodsHolder getPlatformDependentMethods(); ++ ++ double getAnimationTimestamp(); ++ bool isAnyHandlerWaitingForEvent( ++ const std::string &eventName, ++ const int emitterReactTag); ++ void performOperations(); ++ bool getIsReducedMotion(); ++ void requestRender(std::function onRender); ++ void registerEventHandler(); ++ void maybeFlushUIUpdatesQueue(); ++ void setGestureState(int handlerTag, int newState); ++ int registerSensor( ++ int sensorType, ++ int interval, ++ int iosReferenceFrame, ++ std::function setter); ++ void unregisterSensor(int sensorId); ++ int subscribeForKeyboardEvents( ++ std::function callback, ++ bool isStatusBarTranslucent, ++ bool isNavigationBarTranslucent); ++ void unsubscribeFromKeyboardEvents(int listenerId); ++ void handleEvent( ++ jni::alias_ref eventName, ++ jint emitterReactTag, ++ jni::alias_ref event); ++ ++ /*** ++ * Wraps a method of `NativeProxy` in a function object capturing `this` ++ * @tparam TReturn return type of passed method ++ * @tparam TParams parameter types of passed method ++ * @param methodPtr pointer to method to be wrapped ++ * @return a function object with the same signature as the method, calling ++ * that method on `this` ++ */ ++ template ++ std::function bindThis( ++ TReturn (NativeProxy::*methodPtr)(TParams...)) { ++ // It's probably safe to pass `this` as reference here... ++ return [this, methodPtr](TParams &&...args) { ++ return (this->*methodPtr)(std::forward(args)...); ++ }; ++ } ++ ++ template ++ JMethod getJniMethod(std::string const &methodName) { ++ return javaPart_->getClass()->getMethod(methodName.c_str()); ++ } ++ ++ explicit NativeProxy( ++ jni::alias_ref jThis, ++ const std::shared_ptr &workletsModuleProxy, ++ jsi::Runtime *rnRuntime, ++ const std::shared_ptr &jsCallInvoker, ++ jni::alias_ref ++ fabricUIManager); ++ ++ void invalidateCpp(); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/SensorSetter.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/SensorSetter.h +new file mode 100644 +index 0000000..a3fe548 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/SensorSetter.h +@@ -0,0 +1,42 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class SensorSetter : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/SensorSetter;"; ++ ++ void sensorSetter(jni::alias_ref value, int orientationDegrees) { ++ size_t size = value->size(); ++ auto elements = value->getRegion(0, size); ++ double array[7]; ++ for (size_t i = 0; i < size; i++) { ++ array[i] = elements[i]; ++ } ++ callback_(array, orientationDegrees); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("sensorSetter", SensorSetter::sensorSetter), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit SensorSetter(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/libreanimated.so +new file mode 100755 +index 0000000..bd83cd4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/abi.json +new file mode 100644 +index 0000000..c4d68de +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86_64", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/libreanimated.so +new file mode 100755 +index 0000000..81f39dc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/module.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/prefab.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/prefab.json +new file mode 100644 +index 0000000..becccdf +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/prefab.json +@@ -0,0 +1,6 @@ ++{ ++ "name": "react-native-reanimated", ++ "schema_version": 2, ++ "dependencies": [], ++ "version": "4.1.6" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/prefab_publication.json/debug b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/prefab_publication.json/debug +new file mode 100644 +index 0000000..f997b54 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/prefab_publication.json/debug +@@ -0,0 +1,35 @@ ++{ ++ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":react-native-reanimated", ++ "packageInfo": { ++ "packageName": "react-native-reanimated", ++ "packageVersion": "4.1.6", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "reanimated", ++ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "arm64-v8a", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json" ++ }, ++ { ++ "abiName": "x86_64", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug +new file mode 100644 +index 0000000..d4cdffc +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug +@@ -0,0 +1,18 @@ ++{ ++ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":react-native-reanimated", ++ "packageInfo": { ++ "packageName": "react-native-reanimated", ++ "packageVersion": "4.1.6", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "reanimated", ++ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", ++ "moduleExportLibraries": [], ++ "abis": [] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release +new file mode 100644 +index 0000000..48574ba +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release +@@ -0,0 +1,18 @@ ++{ ++ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/release/prefab", ++ "gradlePath": ":react-native-reanimated", ++ "packageInfo": { ++ "packageName": "react-native-reanimated", ++ "packageVersion": "4.1.6", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "reanimated", ++ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", ++ "moduleExportLibraries": [], ++ "abis": [] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..bc9e18d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-reanimated/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..212ed29 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1 @@ ++com.swmansion.reanimated +diff --git a/node_modules/react-native-reanimated/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-reanimated/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..ba85a23 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,16 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml:2:1-71 ++INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml:2:1-71 ++ package ++ INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml ++ xmlns:android ++ ADDED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml:2:11-69 ++uses-sdk ++INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml reason: use-sdk injection requested ++INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml ++INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml ++ android:targetSdkVersion ++ INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml ++ android:minSdkVersion ++ INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/AnimatedSensor/AnimatedSensorModule.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/AnimatedSensor/AnimatedSensorModule.h +new file mode 100644 +index 0000000..f813079 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/AnimatedSensor/AnimatedSensorModule.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace worklets; ++ ++enum SensorType { ++ ACCELEROMETER = 1, ++ GYROSCOPE = 2, ++ GRAVITY = 3, ++ MAGNETIC_FIELD = 4, ++ ROTATION_VECTOR = 5, ++}; ++ ++class AnimatedSensorModule { ++ std::unordered_set sensorsIds_; ++ RegisterSensorFunction platformRegisterSensorFunction_; ++ UnregisterSensorFunction platformUnregisterSensorFunction_; ++ ++ public: ++ AnimatedSensorModule( ++ const PlatformDepMethodsHolder &platformDepMethodsHolder); ++ ~AnimatedSensorModule(); ++ ++ jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const std::shared_ptr &uiWorkletRuntime, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer); ++ void unregisterSensor(const jsi::Value &sensorId); ++ void unregisterAllSensors(); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/InterpolatorRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/InterpolatorRegistry.h +new file mode 100644 +index 0000000..5d841ba +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/InterpolatorRegistry.h +@@ -0,0 +1,20 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++using ComponentInterpolatorsMap = ++ std::unordered_map; ++ ++const InterpolatorFactoriesRecord &getComponentInterpolators( ++ const std::string &componentName); ++ ++void registerComponentInterpolators( ++ const std::string &componentName, ++ const InterpolatorFactoriesRecord &interpolators); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/definitions.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/definitions.h +new file mode 100644 +index 0000000..d043127 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/definitions.h +@@ -0,0 +1,23 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++ ++using PropertyNames = std::vector; ++using PropertyPath = std::vector; ++/** ++ * If nullopt - all style properties can trigger transition ++ * If empty vector - no style property can trigger transition ++ * Otherwise - only specified style properties can trigger transition ++ */ ++using TransitionProperties = std::optional; ++ ++using EasingFunction = std::function; ++using ColorChannels = std::array; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/Quaternion.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/Quaternion.h +new file mode 100644 +index 0000000..67336b8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/Quaternion.h +@@ -0,0 +1,23 @@ ++#pragma once ++ ++#ifndef NDEBUG ++#include ++#endif // NDEBUG ++ ++namespace reanimated::css { ++ ++struct Quaternion { ++ double x, y, z, w; ++ ++ bool operator==(const Quaternion &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const Quaternion &quaternion); ++#endif // NDEBUG ++ ++ Quaternion interpolate(double progress, const Quaternion &other) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix.h +new file mode 100644 +index 0000000..805bc8a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix.h +@@ -0,0 +1,147 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class TransformMatrix { ++ public: ++ virtual ~TransformMatrix() = default; ++ ++ virtual double determinant() const = 0; ++ ++ virtual double &operator[](size_t index) = 0; ++ virtual const double &operator[](size_t index) const = 0; ++ ++ virtual size_t getDimension() const = 0; ++ ++ virtual std::string toString() const = 0; ++ virtual folly::dynamic toDynamic() const = 0; ++}; ++ ++template ++class TransformMatrixBase : public TransformMatrix { ++ public: ++ static constexpr size_t SIZE = TDimension * TDimension; ++ using MatrixArray = std::array; ++ ++ explicit TransformMatrixBase(MatrixArray matrix) ++ : matrix_(std::move(matrix)) {} ++ ++ explicit TransformMatrixBase(jsi::Runtime &rt, const jsi::Value &value) { ++ const auto array = value.asObject(rt).asArray(rt); ++ if (array.size(rt) != SIZE) { ++ throw std::invalid_argument( ++ "[Reanimated] Matrix array should have " + std::to_string(SIZE) + ++ " elements"); ++ } ++ ++ for (size_t i = 0; i < SIZE; ++i) { ++ matrix_[i] = array.getValueAtIndex(rt, i).asNumber(); ++ } ++ } ++ ++ explicit TransformMatrixBase(const folly::dynamic &array) { ++ if (!array.isArray() || array.size() != SIZE) { ++ throw std::invalid_argument( ++ "[Reanimated] Matrix array should have " + std::to_string(SIZE) + ++ " elements"); ++ } ++ ++ for (size_t i = 0; i < SIZE; ++i) { ++ matrix_[i] = array[i].asDouble(); ++ } ++ } ++ ++ virtual bool operator==(const TDerived &other) const = 0; ++ ++ double &operator[](size_t index) override { ++ return matrix_[index]; ++ } ++ ++ const double &operator[](size_t index) const override { ++ return matrix_[index]; ++ } ++ ++ TDerived operator*(const TDerived &rhs) const { ++ return TDerived(multiply(rhs)); ++ } ++ ++ TDerived &operator*=(const TDerived &rhs) { ++ matrix_ = multiply(rhs); ++ return static_cast(*this); ++ } ++ ++ std::string toString() const override { ++ std::string result = "["; ++ for (size_t i = 0; i < SIZE; ++i) { ++ result += std::to_string(matrix_[i]); ++ if (i < SIZE - 1) { ++ result += ", "; ++ } ++ } ++ result += "]"; ++ return result; ++ } ++ ++ folly::dynamic toDynamic() const override { ++ folly::dynamic result = folly::dynamic::array; ++ for (size_t i = 0; i < SIZE; ++i) { ++ result.push_back(matrix_[i]); ++ } ++ return result; ++ } ++ ++ size_t getDimension() const override { ++ return TDimension; ++ } ++ ++ bool isSingular() const { ++ return determinant() == 0; ++ } ++ ++ bool normalize() { ++ const auto last = matrix_[SIZE - 1]; ++ if (last == 0) { ++ return false; ++ } ++ if (last == 1) { ++ return true; ++ } ++ ++ for (size_t i = 0; i < SIZE; ++i) { ++ matrix_[i] /= last; ++ } ++ return true; ++ } ++ ++ void transpose() { ++ for (size_t i = 0; i < TDimension; ++i) { ++ for (size_t j = i + 1; j < TDimension; ++j) { ++ std::swap(matrix_[i * TDimension + j], matrix_[j * TDimension + i]); ++ } ++ } ++ } ++ ++ protected: ++ std::array matrix_; ++ ++ MatrixArray multiply(const TDerived &rhs) const { ++ std::array result{}; ++ for (size_t i = 0; i < TDimension; ++i) { ++ for (size_t j = 0; j < TDimension; ++j) { ++ for (size_t k = 0; k < TDimension; ++k) { ++ result[i * TDimension + j] += ++ matrix_[i * TDimension + k] * rhs[k * TDimension + j]; ++ } ++ } ++ } ++ return result; ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix2D.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix2D.h +new file mode 100644 +index 0000000..1dd9a66 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix2D.h +@@ -0,0 +1,58 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++namespace { ++static constexpr size_t MATRIX_2D_DIMENSION = 3; // 3x3 matrix ++} ++ ++class TransformMatrix2D ++ : public TransformMatrixBase { ++ public: ++ struct Decomposed { ++ Vector2D scale; ++ double skew; ++ double rotation; ++ Vector2D translation; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const Decomposed &decomposed); ++#endif // NDEBUG ++ ++ Decomposed interpolate(double progress, const Decomposed &other) const; ++ }; ++ ++ using TransformMatrixBase:: ++ TransformMatrixBase; ++ ++ static TransformMatrix2D Identity(); ++ ++ template ++ static TransformMatrix2D create(double value); ++ ++ bool operator==(const TransformMatrix2D &other) const override; ++ ++ double determinant() const override; ++ void translate2d(const Vector2D &translation); ++ void scale2d(const Vector2D &scale); ++ ++ std::optional decompose() const; ++ static TransformMatrix2D recompose(const Decomposed &decomposed); ++ ++ private: ++ Vector2D getTranslation() const; ++ static std::pair computeScaleAndSkew( ++ std::array &rows); ++ static double computeRotation(std::array &rows); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix3D.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix3D.h +new file mode 100644 +index 0000000..cd5d796 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix3D.h +@@ -0,0 +1,84 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++namespace { ++static constexpr size_t MATRIX_3D_DIMENSION = 4; // 4x4 matrix ++} ++ ++class TransformMatrix3D ++ : public TransformMatrixBase { ++ public: ++ struct Decomposed { ++ Vector3D scale; ++ Vector3D skew; ++ Quaternion quaternion; ++ Vector3D translation; ++ Vector4D perspective; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const Decomposed &decomposed); ++#endif // NDEBUG ++ ++ Decomposed interpolate(double progress, const Decomposed &other) const; ++ }; ++ ++ using TransformMatrixBase:: ++ TransformMatrixBase; ++ ++ static TransformMatrix3D Identity(); ++ ++ template ++ static TransformMatrix3D create(double value); ++ ++ bool operator==(const TransformMatrix3D &other) const override; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const TransformMatrix3D &matrix); ++#endif // NDEBUG ++ ++ double determinant() const override; ++ void adjugate(); ++ bool invert(); ++ void translate3d(const Vector3D &translation); ++ void scale3d(const Vector3D &scale); ++ ++ std::optional decompose() const; ++ static TransformMatrix3D recompose(const Decomposed &decomposed); ++ static TransformMatrix3D fromQuaternion(const Quaternion &q); ++ ++ private: ++ std::optional computePerspective() const; ++ ++ Vector3D getTranslation() const; ++ static std::pair computeScaleAndSkew( ++ std::array &rows); ++ static Quaternion computeQuaternion(std::array &columns); ++ ++ inline static double determinant3x3( ++ double a, ++ double b, ++ double c, ++ double d, ++ double e, ++ double f, ++ double g, ++ double h, ++ double i); ++}; ++ ++Vector4D operator*(const Vector4D &v, const TransformMatrix3D &m); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformOp.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformOp.h +new file mode 100644 +index 0000000..846b32e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformOp.h +@@ -0,0 +1,27 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated::css { ++ ++enum class TransformOp { ++ Perspective, ++ Rotate, ++ RotateX, ++ RotateY, ++ RotateZ, ++ Scale, ++ ScaleX, ++ ScaleY, ++ TranslateX, ++ TranslateY, ++ SkewX, ++ SkewY, ++ Matrix, ++}; ++ ++TransformOp getTransformOperationType(const std::string &property); ++ ++std::string getOperationNameFromType(const TransformOp type); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/vectors.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/vectors.h +new file mode 100644 +index 0000000..5d6a788 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/vectors.h +@@ -0,0 +1,77 @@ ++#pragma once ++ ++#include ++ ++#ifndef NDEBUG ++#include ++#endif // NDEBUG ++ ++namespace reanimated::css { ++ ++struct Vector2D { ++ std::array vec; ++ ++ Vector2D() : vec({0, 0}) {} ++ explicit Vector2D(double x, double y) : vec({x, y}) {} ++ explicit Vector2D(std::array vec) : vec(vec) {} ++ ++ double &operator[](size_t idx); ++ const double &operator[](size_t idx) const; ++ Vector2D &operator*=(double scalar); ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const Vector2D &vector); ++#endif // NDEBUG ++ ++ double length() const; ++ void scaleToLength(double targetLength); ++ void normalize(); ++ double dot(const Vector2D &other) const; ++ double cross(const Vector2D &other) const; ++ Vector2D addScaled(const Vector2D &other, double scale) const; ++ Vector2D interpolate(double progress, const Vector2D &other) const; ++}; ++ ++struct Vector3D { ++ std::array vec; ++ ++ Vector3D() : vec({0, 0, 0}) {} ++ explicit Vector3D(double x, double y, double z) : vec({x, y, z}) {} ++ explicit Vector3D(std::array vec) : vec(vec) {} ++ ++ double &operator[](size_t idx); ++ const double &operator[](size_t idx) const; ++ Vector3D &operator*=(double scalar); ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const Vector3D &vector); ++#endif // NDEBUG ++ ++ double length() const; ++ void scaleToLength(double targetLength); ++ void normalize(); ++ double dot(const Vector3D &other) const; ++ Vector3D cross(const Vector3D &other) const; ++ Vector3D addScaled(const Vector3D &other, double scale) const; ++ Vector3D interpolate(double progress, const Vector3D &other) const; ++}; ++ ++struct Vector4D { ++ std::array vec; ++ ++ Vector4D() : vec({0, 0, 0, 0}) {} ++ explicit Vector4D(double x, double y, double z, double w) ++ : vec({x, y, z, w}) {} ++ explicit Vector4D(std::array vec) : vec(vec) {} ++ ++ double &operator[](size_t idx); ++ const double &operator[](size_t idx) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const Vector4D &vector); ++#endif // NDEBUG ++ ++ Vector4D interpolate(double progress, const Vector4D &other) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSAngle.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSAngle.h +new file mode 100644 +index 0000000..5501c65 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSAngle.h +@@ -0,0 +1,38 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++struct CSSAngle : public CSSSimpleValue { ++ double value; ++ ++ CSSAngle(); ++ explicit CSSAngle(double value); ++ explicit CSSAngle(const std::string &rotationString); ++ explicit CSSAngle(const char *cstr); ++ explicit CSSAngle(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSAngle(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ CSSAngle interpolate(double progress, const CSSAngle &to) const override; ++ ++ bool operator==(const CSSAngle &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const CSSAngle &angleValue); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSBoolean.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSBoolean.h +new file mode 100644 +index 0000000..ea6a08b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSBoolean.h +@@ -0,0 +1,33 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++struct CSSBoolean : public CSSSimpleValue { ++ bool value; ++ ++ CSSBoolean(); ++ explicit CSSBoolean(bool value); ++ explicit CSSBoolean(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSBoolean(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ CSSBoolean interpolate(double progress, const CSSBoolean &to) const override; ++ ++ bool operator==(const CSSBoolean &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const CSSBoolean &boolValue); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSColor.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSColor.h +new file mode 100644 +index 0000000..b7c679f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSColor.h +@@ -0,0 +1,60 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++enum class ColorType { ++ Rgba, ++ Transparent, ++ CurrentColor, // for SVG ++}; ++ ++struct CSSColor : public CSSSimpleValue { ++ ColorChannels channels; ++ ColorType colorType; ++ ++ static const CSSColor Transparent; ++ ++ CSSColor(); ++ explicit CSSColor(ColorType colorType); ++ explicit CSSColor(int64_t numberValue); ++ explicit CSSColor(const std::string &colorString); ++ ++ explicit CSSColor(uint8_t r, uint8_t g, uint8_t b); ++ explicit CSSColor(uint8_t r, uint8_t g, uint8_t b, uint8_t a); ++ explicit CSSColor(const ColorChannels &colorChannels); ++ ++ explicit CSSColor(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSColor(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ CSSColor interpolate(double progress, const CSSColor &to) const override; ++ ++ static uint8_t interpolateChannel(uint8_t from, uint8_t to, double progress); ++ ++ bool operator==(const CSSColor &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const CSSColor &colorValue); ++#endif // NDEBUG ++ ++ private: ++ static bool isValidColorString(const std::string &colorString); ++}; ++ ++inline const CSSColor CSSColor::Transparent(ColorType::Transparent); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSDiscreteArray.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSDiscreteArray.h +new file mode 100644 +index 0000000..e5e1fc9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSDiscreteArray.h +@@ -0,0 +1,49 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++/* ++ * CSSDiscreteArray is used for array interpolation when arrays need to be ++ * treated as discrete values. Instead of interpolating between corresponding ++ * elements of two arrays, this type interpolates between entire arrays ++ * treated as single discrete values. ++ */ ++template ++struct CSSDiscreteArray : public CSSSimpleValue> { ++ static constexpr bool is_discrete_value = true; ++ ++ std::vector values; ++ ++ CSSDiscreteArray(); ++ explicit CSSDiscreteArray(const std::vector &values); ++ explicit CSSDiscreteArray(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSDiscreteArray(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ CSSDiscreteArray interpolate( ++ double progress, ++ const CSSDiscreteArray &other) const override; ++ ++ bool operator==(const CSSDiscreteArray &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const CSSDiscreteArray &arrayValue); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSKeyword.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSKeyword.h +new file mode 100644 +index 0000000..7e43a0c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSKeyword.h +@@ -0,0 +1,61 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++template ++class CSSKeywordBase : public CSSSimpleValue { ++ public: ++ static constexpr bool is_discrete_value = true; ++ ++ CSSKeywordBase() = default; ++ explicit CSSKeywordBase(const char *value); ++ explicit CSSKeywordBase(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSKeywordBase(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ ++ bool operator==(const CSSKeywordBase &other) const; ++ ++ protected: ++ std::string value; ++}; ++ ++struct CSSKeyword : public CSSKeywordBase { ++ using CSSKeywordBase::CSSKeywordBase; ++ using CSSKeywordBase::canConstruct; ++ ++ CSSKeyword interpolate(double progress, const CSSKeyword &to) const override; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const CSSKeyword &keywordValue); ++#endif // NDEBUG ++}; ++ ++struct CSSDisplay : public CSSKeywordBase { ++ using CSSKeywordBase::CSSKeywordBase; ++ using CSSKeywordBase::canConstruct; ++ ++ CSSDisplay interpolate(double progress, const CSSDisplay &to) const override; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const CSSDisplay &displayValue); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSLength.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSLength.h +new file mode 100644 +index 0000000..aa26fc8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSLength.h +@@ -0,0 +1,41 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++struct CSSLength : public CSSResolvableValue { ++ double value; ++ bool isRelative; ++ ++ CSSLength(); ++ explicit CSSLength(double value); ++ explicit CSSLength(double value, bool isRelative); ++ explicit CSSLength(const char *value); ++ explicit CSSLength(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSLength(const folly::dynamic &value); ++ ++ static bool canConstruct(const std::string &value); ++ static bool canConstruct(const char *value); ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ CSSLength interpolate( ++ double progress, ++ const CSSLength &to, ++ const CSSResolvableValueInterpolationContext &context) const override; ++ std::optional resolve( ++ const CSSResolvableValueInterpolationContext &context) const override; ++ ++ bool operator==(const CSSLength &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const CSSLength &dimension); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSNumber.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSNumber.h +new file mode 100644 +index 0000000..902d421 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSNumber.h +@@ -0,0 +1,71 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++template ++struct CSSNumberBase : public CSSSimpleValue { ++ TValue value; ++ ++ CSSNumberBase(); ++ explicit CSSNumberBase(TValue value); ++ explicit CSSNumberBase(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSNumberBase(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ TDerived interpolate(double progress, const TDerived &other) const override; ++ ++ bool operator==(const CSSNumberBase &other) const; ++}; ++ ++#ifndef NDEBUG ++ ++template ++std::ostream &operator<<( ++ std::ostream &os, ++ const CSSNumberBase &numberValue) { ++ os << "CSSNumberBase(" << numberValue.toString() << ")"; ++ return os; ++} ++ ++#endif // NDEBUG ++ ++struct CSSDouble : public CSSNumberBase { ++ // Inherit all constructors from the base class ++ using CSSNumberBase::CSSNumberBase; ++}; ++struct CSSInteger : public CSSNumberBase { ++ // Inherit all constructors from the base class ++ using CSSNumberBase::CSSNumberBase; ++ ++ CSSInteger interpolate(double progress, const CSSInteger &other) ++ const override; ++}; ++ ++#ifdef ANDROID ++ ++// For some reason Android crashes when blurRadius is smaller than 1 so we use a ++// custom value that will never be smaller than 1 ++ ++struct CSSShadowRadiusAndroid ++ : public CSSNumberBase { ++ CSSShadowRadiusAndroid(); ++ explicit CSSShadowRadiusAndroid(double value); ++ explicit CSSShadowRadiusAndroid(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit CSSShadowRadiusAndroid(const folly::dynamic &value); ++}; ++ ++#endif ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValue.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValue.h +new file mode 100644 +index 0000000..923997f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValue.h +@@ -0,0 +1,79 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++ ++struct ValueInterpolatorUpdateContext { ++ const std::shared_ptr &node; ++}; ++ ++enum class RelativeTo { ++ Parent, ++ Self, ++}; ++ ++struct CSSResolvableValueInterpolationContext { ++ const std::shared_ptr &node; ++ const std::shared_ptr &viewStylesRepository; ++ const std::string &relativeProperty; ++ const RelativeTo relativeTo; ++}; ++ ++struct CSSValue { ++ // This field should be overridden in discrete value types ++ static constexpr bool is_discrete_value = false; ++ ++ virtual ~CSSValue() = default; ++ ++ virtual folly::dynamic toDynamic() const = 0; ++ virtual std::string toString() const = 0; ++}; ++ ++// Base for leaf values that can be interpolated without resolution ++template ++struct CSSSimpleValue : public CSSValue { ++ static constexpr bool is_resolvable_value = false; ++ ++ virtual TDerived interpolate(double progress, const TDerived &to) const = 0; ++}; ++ ++// Base for leaf values that need resolution before interpolation ++template ++struct CSSResolvableValue : public CSSValue { ++ static constexpr bool is_resolvable_value = true; ++ ++ virtual TDerived interpolate( ++ double progress, ++ const TDerived &to, ++ const CSSResolvableValueInterpolationContext &context) const = 0; ++ virtual std::optional resolve( ++ const CSSResolvableValueInterpolationContext &context) const = 0; ++}; ++ ++// Checks if a type is a resolvable value that needs resolution before ++// interpolation ++template ++concept Resolvable = requires { ++ { TCSSValue::is_resolvable_value } -> std::convertible_to; ++ requires TCSSValue::is_resolvable_value == true; ++}; ++ ++// Checks if a type is a discrete value ++template ++concept Discrete = requires { ++ { TCSSValue::is_discrete_value } -> std::convertible_to; ++ requires TCSSValue::is_discrete_value == true; ++}; ++ ++// Check if a type is derived from CSSValue ++template ++concept CSSValueDerived = std::is_base_of_v; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValueVariant.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValueVariant.h +new file mode 100644 +index 0000000..602d6c5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValueVariant.h +@@ -0,0 +1,123 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace worklets; ++ ++/** ++ * Macro to check if two lambda parameters have the same reference-removed type. ++ * ++ * Usage: ++ * REA_IF_SAME_TYPE(lhs, rhs) { ++ * // same-type block ++ * } else { ++ * // mismatch block ++ * } ++ */ ++#define REA_IF_SAME_TYPE(lhs, rhs) \ ++ using L = std::remove_reference_t; \ ++ using R = std::remove_reference_t; \ ++ if constexpr (std::is_same_v) // NOLINT(readability/braces) ++ ++// Checks whether a type has canConstruct(...) for a generic value ++template ++concept ValueConstructibleCSSValue = requires(TValue &&value) { ++ { ++ TCSSValue::canConstruct(std::forward(value)) ++ } -> std::same_as; ++}; // NOLINT(readability/braces) ++ ++// Checks whether a type can be constructed from a jsi::Value ++template ++concept JSIConstructibleCSSValue = ++ requires(jsi::Runtime &rt, const jsi::Value &value) { ++ { TCSSValue::canConstruct(rt, value) } -> std::same_as; ++ { TCSSValue(rt, value) } -> std::same_as; ++ }; // NOLINT(readability/braces) ++ ++// Checks whether a type can be constructed from a folly::dynamic ++template ++concept DynamicConstructibleCSSValue = requires(const folly::dynamic &value) { ++ { TCSSValue::canConstruct(value) } -> std::same_as; ++ { TCSSValue(value) } -> std::same_as; ++}; // NOLINT(readability/braces) ++ ++/** ++ * CSSValueVariant ++ * ++ * A std::variant-based container for multiple CSSValue-derived types. ++ */ ++template ++class CSSValueVariant final : public CSSValue { ++ static_assert( ++ (CSSValueDerived && ...), ++ "CSSValueVariant accepts only CSSValue-derived types"); ++ static_assert( ++ (JSIConstructibleCSSValue && ...), ++ "CSSValueVariant accepts only types that can be constructed from a jsi::Value"); ++ static_assert( ++ (DynamicConstructibleCSSValue && ...), ++ "CSSValueVariant accepts only types that can be constructed from a folly::dynamic"); ++ ++ public: ++ CSSValueVariant() = default; ++ ++ /** ++ * Construct from std::variant storage directly ++ */ ++ explicit CSSValueVariant(std::variant &&storage); ++ ++ /** ++ * Construct from jsi::Value if it matches any AllowedType's constructor ++ * (chooses the first one that matches) ++ */ ++ explicit CSSValueVariant(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ ++ /** ++ * Construct from folly::dynamic if it matches any AllowedType's constructor ++ * (chooses the first one that matches) ++ */ ++ explicit CSSValueVariant(const folly::dynamic &value); ++ ++ bool operator==(const CSSValueVariant &other) const; ++ bool operator==(const CSSValue &other) const; ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ ++ /** ++ * Interpolate (non-resolvable) ++ */ ++ CSSValueVariant interpolate( ++ const double progress, ++ const CSSValueVariant &to, ++ const ValueInterpolatorUpdateContext &context) const; ++ ++ /** ++ * Interpolate (resolvable) ++ */ ++ CSSValueVariant interpolate( ++ const double progress, ++ const CSSValueVariant &to, ++ const CSSResolvableValueInterpolationContext &context) const; ++ ++ private: ++ std::variant storage_; ++ ++ CSSValueVariant fallbackInterpolate( ++ const double progress, ++ const CSSValueVariant &to) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSAnimationConfig.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSAnimationConfig.h +new file mode 100644 +index 0000000..1defb7b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSAnimationConfig.h +@@ -0,0 +1,53 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++enum class AnimationDirection { Normal, Reverse, Alternate, AlternateReverse }; ++enum class AnimationFillMode { None, Forwards, Backwards, Both }; ++enum class AnimationPlayState { Running, Paused }; ++ ++struct CSSAnimationSettings { ++ double duration; ++ EasingFunction easingFunction; ++ double delay; ++ double iterationCount; ++ AnimationDirection direction; ++ AnimationFillMode fillMode; ++ AnimationPlayState playState; ++}; ++ ++struct PartialCSSAnimationSettings { ++ std::optional duration; ++ std::optional easingFunction; ++ std::optional delay; ++ std::optional iterationCount; ++ std::optional direction; ++ std::optional fillMode; ++ std::optional playState; ++}; ++ ++using CSSAnimationSettingsMap = ++ std::unordered_map; ++using CSSAnimationSettingsUpdatesMap = ++ std::unordered_map; ++ ++struct CSSAnimationUpdates { ++ std::optional> animationNames; ++ CSSAnimationSettingsMap newAnimationSettings; ++ CSSAnimationSettingsUpdatesMap settingsUpdates; ++}; ++ ++CSSAnimationUpdates parseCSSAnimationUpdates( ++ jsi::Runtime &rt, ++ const jsi::Value &config); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSKeyframesConfig.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSKeyframesConfig.h +new file mode 100644 +index 0000000..3ba8880 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSKeyframesConfig.h +@@ -0,0 +1,26 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using KeyframeEasingFunctions = std::unordered_map; ++ ++struct CSSKeyframesConfig { ++ std::shared_ptr styleInterpolator; ++ std::shared_ptr keyframeEasingFunctions; ++}; ++ ++CSSKeyframesConfig parseCSSAnimationKeyframesConfig( ++ jsi::Runtime &rt, ++ const jsi::Value &config, ++ const std::string &componentName, ++ const std::shared_ptr &viewStylesRepository); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSTransitionConfig.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSTransitionConfig.h +new file mode 100644 +index 0000000..1ca2106 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSTransitionConfig.h +@@ -0,0 +1,50 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++struct CSSTransitionPropertySettings { ++ double duration; ++ EasingFunction easingFunction; ++ double delay; ++ bool allowDiscrete; ++}; ++ ++using CSSTransitionPropertiesSettings = ++ std::unordered_map; ++ ++struct CSSTransitionConfig { ++ TransitionProperties properties; ++ CSSTransitionPropertiesSettings settings; ++}; ++ ++struct PartialCSSTransitionConfig { ++ std::optional properties; ++ std::optional settings; ++}; ++ ++std::optional getTransitionPropertySettings( ++ const CSSTransitionPropertiesSettings &propertiesSettings, ++ const std::string &propName); ++ ++TransitionProperties getProperties(jsi::Runtime &rt, const jsi::Object &config); ++ ++CSSTransitionPropertiesSettings parseCSSTransitionPropertiesSettings( ++ jsi::Runtime &rt, ++ const jsi::Object &settings); ++ ++CSSTransitionConfig parseCSSTransitionConfig( ++ jsi::Runtime &rt, ++ const jsi::Value &config); ++ ++PartialCSSTransitionConfig parsePartialCSSTransitionConfig( ++ jsi::Runtime &rt, ++ const jsi::Value &partialConfig); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/common.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/common.h +new file mode 100644 +index 0000000..4d053e6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/common.h +@@ -0,0 +1,13 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated::css { ++ ++double getDuration(jsi::Runtime &rt, const jsi::Object &config); ++ ++EasingFunction getTimingFunction(jsi::Runtime &rt, const jsi::Object &config); ++ ++double getDelay(jsi::Runtime &rt, const jsi::Object &config); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSAnimation.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSAnimation.h +new file mode 100644 +index 0000000..3ac4004 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSAnimation.h +@@ -0,0 +1,51 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++class CSSAnimation { ++ public: ++ CSSAnimation( ++ jsi::Runtime &rt, ++ std::shared_ptr shadowNode, ++ std::string animationName, ++ const CSSKeyframesConfig &cssKeyframesConfig, ++ const CSSAnimationSettings &settings, ++ double timestamp); ++ ++ const std::string &getName() const; ++ std::shared_ptr getShadowNode() const; ++ ++ double getStartTimestamp(double timestamp) const; ++ AnimationProgressState getState(double timestamp) const; ++ bool isReversed() const; ++ ++ bool hasForwardsFillMode() const; ++ bool hasBackwardsFillMode() const; ++ ++ folly::dynamic getCurrentInterpolationStyle() const; ++ folly::dynamic getBackwardsFillStyle() const; ++ folly::dynamic getResetStyle() const; ++ ++ void run(double timestamp); ++ folly::dynamic update(double timestamp); ++ void updateSettings( ++ const PartialCSSAnimationSettings &updatedSettings, ++ double timestamp); ++ ++ private: ++ const std::string name_; ++ const std::shared_ptr shadowNode_; ++ AnimationFillMode fillMode_; ++ ++ const std::shared_ptr styleInterpolator_; ++ const std::shared_ptr progressProvider_; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSTransition.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSTransition.h +new file mode 100644 +index 0000000..1afdcbc +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSTransition.h +@@ -0,0 +1,50 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class CSSTransition { ++ public: ++ CSSTransition( ++ std::shared_ptr shadowNode, ++ const CSSTransitionConfig &config, ++ const std::shared_ptr &viewStylesRepository); ++ ++ Tag getViewTag() const; ++ std::shared_ptr getShadowNode() const; ++ double getMinDelay(double timestamp) const; ++ TransitionProgressState getState() const; ++ folly::dynamic getCurrentInterpolationStyle() const; ++ TransitionProperties getProperties() const; ++ PropertyNames getAllowedProperties( ++ const folly::dynamic &oldProps, ++ const folly::dynamic &newProps); ++ ++ void updateSettings(const PartialCSSTransitionConfig &config); ++ folly::dynamic run( ++ const ChangedProps &changedProps, ++ const folly::dynamic &lastUpdateValue, ++ double timestamp); ++ folly::dynamic update(double timestamp); ++ ++ private: ++ const std::shared_ptr shadowNode_; ++ const std::shared_ptr viewStylesRepository_; ++ TransitionProperties properties_; ++ CSSTransitionPropertiesSettings settings_; ++ TransitionStyleInterpolator styleInterpolator_; ++ TransitionProgressProvider progressProvider_; ++ ++ void updateTransitionProperties(const TransitionProperties &properties); ++ bool isAllowedProperty(const std::string &propertyName) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/EasingFunctions.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/EasingFunctions.h +new file mode 100644 +index 0000000..452a96b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/EasingFunctions.h +@@ -0,0 +1,27 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++ ++extern const std::unordered_map ++ PREDEFINED_EASING_MAP; ++ ++EasingFunction getPredefinedEasingFunction(const std::string &name); ++EasingFunction createParametrizedEasingFunction( ++ jsi::Runtime &rt, ++ const jsi::Object &easingConfig); ++ ++EasingFunction createEasingFunction( ++ jsi::Runtime &rt, ++ const jsi::Value &easingConfig); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/cubicBezier.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/cubicBezier.h +new file mode 100644 +index 0000000..fca77fc +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/cubicBezier.h +@@ -0,0 +1,15 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated::css { ++ ++double sampleCurveX(double t, double x1, double x2); ++double sampleCurveY(double t, double y1, double y2); ++double sampleCurveDerivativeX(double t, double x1, double x2); ++double solveCurveX(double x, double x1, double x2, double epsilon = 1e-6); ++ ++EasingFunction cubicBezier(double x1, double y1, double x2, double y2); ++EasingFunction cubicBezier(jsi::Runtime &rt, const jsi::Object &easingConfig); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/linear.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/linear.h +new file mode 100644 +index 0000000..a434118 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/linear.h +@@ -0,0 +1,20 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++double interpolateValue( ++ double x, ++ std::size_t leftIdx, ++ const std::vector &arrX, ++ const std::vector &arrY); ++ ++EasingFunction linear( ++ const std::vector &pointsX, ++ const std::vector &pointsY); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/steps.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/steps.h +new file mode 100644 +index 0000000..720c51b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/steps.h +@@ -0,0 +1,14 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++EasingFunction steps( ++ const std::vector &pointsX, ++ const std::vector &pointsY); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/InterpolatorFactory.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/InterpolatorFactory.h +new file mode 100644 +index 0000000..ab61b15 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/InterpolatorFactory.h +@@ -0,0 +1,194 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++// Template class implementations ++template ++class SimpleValueInterpolatorFactory : public PropertyInterpolatorFactory { ++ public: ++ template ++ explicit SimpleValueInterpolatorFactory(const TValue &defaultValue) ++ : PropertyInterpolatorFactory(), defaultValue_(defaultValue) {} ++ ++ bool isDiscreteProperty() const override { ++ // The property is considered discrete if all of the allowed types are ++ // discrete ++ return (Discrete && ...); ++ } ++ ++ const CSSValue &getDefaultValue() const override { ++ return defaultValue_; ++ } ++ ++ std::shared_ptr create( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository) ++ const override { ++ return std::make_shared>( ++ propertyPath, defaultValue_, viewStylesRepository); ++ } ++ ++ private: ++ const CSSValueVariant defaultValue_; ++}; ++ ++template ++class ResolvableValueInterpolatorFactory : public PropertyInterpolatorFactory { ++ public: ++ template ++ explicit ResolvableValueInterpolatorFactory( ++ RelativeTo relativeTo, ++ const std::string &relativeProperty, ++ const TValue &defaultValue) ++ : PropertyInterpolatorFactory(), ++ relativeTo_(relativeTo), ++ relativeProperty_(relativeProperty), ++ defaultValue_(defaultValue) {} ++ ++ const CSSValue &getDefaultValue() const override { ++ return defaultValue_; ++ } ++ ++ std::shared_ptr create( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository) ++ const override { ++ return std::make_shared>( ++ propertyPath, ++ defaultValue_, ++ viewStylesRepository, ++ relativeTo_, ++ relativeProperty_); ++ } ++ ++ private: ++ const RelativeTo relativeTo_; ++ const std::string relativeProperty_; ++ const CSSValueVariant defaultValue_; ++}; ++ ++/** ++ * Helper function to create a concrete CSSValue from defaultValue ++ */ ++template ++CSSValueVariant createCSSValue(const auto &defaultValue) { ++ using ValueType = decltype(defaultValue); ++ CSSValueVariant result; ++ ++ auto tryOne = [&]() -> bool { ++ if constexpr (std::is_constructible_v) { ++ if constexpr (ValueConstructibleCSSValue) { ++ // For construction from a non-jsi::Value, we perform a runtime ++ // canConstruct check only if the type has a canConstruct method. ++ // (this is needed e.g. when different CSS value types can be ++ // constructed from the same value type, like CSSLength and CSSKeyword) ++ if (!TCSSValue::canConstruct(defaultValue)) { ++ return false; ++ } ++ } ++ result = CSSValueVariant( ++ std::variant(TCSSValue(defaultValue))); ++ return true; ++ } ++ return false; ++ }; ++ ++ // Try constructing with each allowed type until one succeeds ++ if (!(tryOne.template operator()() || ...)) { ++ throw std::runtime_error( ++ "[Reanimated] No compatible type found for construction from defaultValue"); ++ } ++ ++ return result; ++} ++ ++/** ++ * Value interpolator factories ++ */ ++template ++auto value(const auto &defaultValue) -> std::enable_if_t< ++ (std::is_constructible_v || ...), ++ std::shared_ptr> { ++ // Create a concrete CSSValue from the defaultValue ++ auto cssValue = createCSSValue(defaultValue); ++ return std::make_shared>( ++ std::move(cssValue)); ++} ++ ++template ++auto value( ++ RelativeTo relativeTo, ++ const std::string &relativeProperty, ++ const auto &defaultValue) ++ -> std::enable_if_t< ++ (std::is_constructible_v || ...), ++ std::shared_ptr> { ++ // Create a concrete CSSValue from the defaultValue ++ auto cssValue = createCSSValue(defaultValue); ++ return std::make_shared>( ++ relativeTo, relativeProperty, std::move(cssValue)); ++} ++ ++/** ++ * Transform operation interpolator factories ++ */ ++template ++auto transformOp(const auto &defaultValue) -> std::enable_if_t< ++ std::is_base_of_v && ++ std::is_constructible_v, ++ std::shared_ptr> { ++ return std::make_shared>( ++ std::make_shared(defaultValue)); ++} ++ ++template ++auto transformOp( ++ RelativeTo relativeTo, ++ const std::string &relativeProperty, ++ const auto &defaultValue) ++ -> std::enable_if_t< ++ std::is_base_of_v && ++ std::is_constructible_v && ++ ResolvableOperation, ++ std::shared_ptr> { ++ return std::make_shared>( ++ std::make_shared(defaultValue), relativeTo, relativeProperty); ++} ++ ++/** ++ * Record property interpolator factory ++ */ ++std::shared_ptr record( ++ const InterpolatorFactoriesRecord &factories); ++ ++/** ++ * Array property interpolator factory ++ */ ++std::shared_ptr array( ++ const InterpolatorFactoriesArray &factories); ++ ++/** ++ * Transform interpolators ++ */ ++std::shared_ptr transforms( ++ const std::unordered_map< ++ std::string, ++ std::shared_ptr> &interpolators); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/PropertyInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/PropertyInterpolator.h +new file mode 100644 +index 0000000..3d4b8be +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/PropertyInterpolator.h +@@ -0,0 +1,72 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class PropertyInterpolator { ++ public: ++ explicit PropertyInterpolator( ++ PropertyPath propertyPath, ++ const std::shared_ptr &viewStylesRepository); ++ ++ virtual folly::dynamic getStyleValue( ++ const std::shared_ptr &shadowNode) const = 0; ++ virtual folly::dynamic getResetStyle( ++ const std::shared_ptr &shadowNode) const = 0; ++ virtual folly::dynamic getFirstKeyframeValue() const = 0; ++ virtual folly::dynamic getLastKeyframeValue() const = 0; ++ virtual bool equalsReversingAdjustedStartValue( ++ const folly::dynamic &propertyValue) const = 0; ++ ++ virtual void updateKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &keyframes) = 0; ++ virtual void updateKeyframesFromStyleChange( ++ const folly::dynamic &oldStyleValue, ++ const folly::dynamic &newStyleValue, ++ const folly::dynamic &lastUpdateValue) = 0; ++ ++ virtual folly::dynamic interpolate( ++ const std::shared_ptr &shadowNode, ++ const std::shared_ptr &progressProvider) ++ const = 0; ++ ++ protected: ++ const PropertyPath propertyPath_; ++ const std::shared_ptr viewStylesRepository_; ++}; ++ ++class PropertyInterpolatorFactory { ++ public: ++ PropertyInterpolatorFactory() = default; ++ virtual ~PropertyInterpolatorFactory() = default; ++ ++ virtual bool isDiscreteProperty() const; ++ virtual const CSSValue &getDefaultValue() const = 0; ++ ++ virtual std::shared_ptr create( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository) ++ const = 0; ++}; ++ ++using PropertyInterpolatorsRecord = ++ std::unordered_map>; ++using InterpolatorFactoriesRecord = std:: ++ unordered_map>; ++ ++using PropertyInterpolatorsArray = ++ std::vector>; ++using InterpolatorFactoriesArray = ++ std::vector>; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h +new file mode 100644 +index 0000000..4ecccf4 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h +@@ -0,0 +1,39 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++class ArrayPropertiesInterpolator : public GroupPropertiesInterpolator { ++ public: ++ ArrayPropertiesInterpolator( ++ const InterpolatorFactoriesArray &factories, ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository); ++ virtual ~ArrayPropertiesInterpolator() = default; ++ ++ bool equalsReversingAdjustedStartValue( ++ const folly::dynamic &propertyValue) const override; ++ ++ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; ++ void updateKeyframesFromStyleChange( ++ const folly::dynamic &oldStyleValue, ++ const folly::dynamic &newStyleValue, ++ const folly::dynamic &lastUpdateValue) override; ++ ++ protected: ++ folly::dynamic mapInterpolators( ++ const std::function &callback) ++ const override; ++ ++ private: ++ const InterpolatorFactoriesArray &factories_; ++ PropertyInterpolatorsArray interpolators_; ++ ++ void resizeInterpolators(size_t valuesCount); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h +new file mode 100644 +index 0000000..b80657a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h +@@ -0,0 +1,35 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++class GroupPropertiesInterpolator : public PropertyInterpolator { ++ public: ++ GroupPropertiesInterpolator( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository); ++ ++ folly::dynamic getStyleValue( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getResetStyle( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getFirstKeyframeValue() const override; ++ folly::dynamic getLastKeyframeValue() const override; ++ ++ folly::dynamic interpolate( ++ const std::shared_ptr &shadowNode, ++ const std::shared_ptr &progressProvider) ++ const override; ++ ++ protected: ++ virtual folly::dynamic mapInterpolators( ++ const std::function &callback) ++ const = 0; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h +new file mode 100644 +index 0000000..94fdead +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h +@@ -0,0 +1,40 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++class RecordPropertiesInterpolator : public GroupPropertiesInterpolator { ++ public: ++ RecordPropertiesInterpolator( ++ const InterpolatorFactoriesRecord &factories, ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &viewStylesRepository); ++ virtual ~RecordPropertiesInterpolator() = default; ++ ++ bool equalsReversingAdjustedStartValue( ++ const folly::dynamic &propertyValue) const override; ++ ++ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; ++ void updateKeyframesFromStyleChange( ++ const folly::dynamic &oldStyleValue, ++ const folly::dynamic &newStyleValue, ++ const folly::dynamic &lastUpdateValue) override; ++ ++ protected: ++ folly::dynamic mapInterpolators( ++ const std::function &callback) ++ const override; ++ ++ void maybeCreateInterpolator(const std::string &propertyName); ++ ++ private: ++ const InterpolatorFactoriesRecord &factories_; ++ PropertyInterpolatorsRecord interpolators_; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h +new file mode 100644 +index 0000000..6b72e02 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h +@@ -0,0 +1,29 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++// We can just re-use the logic from the RecordPropertiesInterpolator class as ++// interpolating multiple properties from the view style during animation is the ++// same as interpolating record properties ++class AnimationStyleInterpolator : public RecordPropertiesInterpolator { ++ public: ++ explicit AnimationStyleInterpolator( ++ jsi::Runtime &rt, ++ const jsi::Value &keyframes, ++ const std::string &componentName, ++ const std::shared_ptr &viewStylesRepository) ++ : RecordPropertiesInterpolator( ++ getComponentInterpolators(componentName), ++ {}, ++ viewStylesRepository) { ++ updateKeyframes(rt, keyframes); ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h +new file mode 100644 +index 0000000..2d4769e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h +@@ -0,0 +1,51 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class TransitionStyleInterpolator { ++ public: ++ TransitionStyleInterpolator( ++ const std::string &componentName, ++ const std::shared_ptr &viewStylesRepository); ++ ++ std::unordered_set getReversedPropertyNames( ++ const folly::dynamic &newPropertyValues) const; ++ ++ folly::dynamic interpolate( ++ const std::shared_ptr &shadowNode, ++ const TransitionProgressProvider &transitionProgressProvider) const; ++ ++ void discardFinishedInterpolators( ++ const TransitionProgressProvider &transitionProgressProvider); ++ void discardIrrelevantInterpolators( ++ const std::unordered_set &transitionPropertyNames); ++ void updateInterpolatedProperties( ++ const ChangedProps &changedProps, ++ const folly::dynamic &lastUpdateValue); ++ ++ private: ++ using MapInterpolatorsCallback = std::function &, ++ const std::shared_ptr &)>; ++ ++ const std::string componentName_; ++ const std::shared_ptr viewStylesRepository_; ++ ++ PropertyInterpolatorsRecord interpolators_; ++ ++ folly::dynamic mapInterpolators( ++ const TransitionProgressProvider &transitionProgressProvider, ++ const MapInterpolatorsCallback &callback) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformInterpolator.h +new file mode 100644 +index 0000000..2426df9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformInterpolator.h +@@ -0,0 +1,85 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++class TransformInterpolator { ++ public: ++ using Interpolators = ++ std::unordered_map>; ++ ++ struct UpdateContext { ++ const std::shared_ptr &node; ++ const std::shared_ptr &viewStylesRepository; ++ const std::shared_ptr &interpolators; ++ }; ++ ++ virtual ~TransformInterpolator() = default; ++ ++ virtual std::shared_ptr getDefaultOperation() const = 0; ++ virtual std::shared_ptr interpolate( ++ double progress, ++ const std::shared_ptr &from, ++ const std::shared_ptr &to, ++ const UpdateContext &context) const = 0; ++ virtual std::shared_ptr resolveOperation( ++ const std::shared_ptr &operation, ++ const UpdateContext &context) const = 0; ++}; ++ ++template ++class TransformInterpolatorBase : public TransformInterpolator { ++ public: ++ explicit TransformInterpolatorBase( ++ std::shared_ptr defaultOperation) ++ : defaultOperation_(defaultOperation) {} ++ ++ std::shared_ptr getDefaultOperation() const override { ++ return defaultOperation_; ++ } ++ ++ std::shared_ptr interpolate( ++ double progress, ++ const std::shared_ptr &from, ++ const std::shared_ptr &to, ++ const UpdateContext &context) const override { ++ return std::make_shared(interpolate( ++ progress, ++ *std::static_pointer_cast(from), ++ *std::static_pointer_cast(to), ++ context)); ++ } ++ ++ std::shared_ptr resolveOperation( ++ const std::shared_ptr &operation, ++ const UpdateContext &context) const override { ++ return std::make_shared(resolveOperation( ++ *std::static_pointer_cast(operation), context)); ++ } ++ ++ protected: ++ virtual TOperation interpolate( ++ double progress, ++ const TOperation &from, ++ const TOperation &to, ++ const UpdateContext &context) const = 0; ++ ++ virtual TOperation resolveOperation( ++ const TOperation &operation, ++ const UpdateContext &context) const { ++ return operation; ++ } ++ ++ private: ++ std::shared_ptr defaultOperation_; ++}; ++ ++using TransformInterpolators = TransformInterpolator::Interpolators; ++using TransformInterpolatorUpdateContext = TransformInterpolator::UpdateContext; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperation.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperation.h +new file mode 100644 +index 0000000..f8a2023 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperation.h +@@ -0,0 +1,87 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++#ifndef NDEBUG ++#include ++#include ++#endif // NDEBUG ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++using namespace react; ++ ++// Base struct for TransformOperation ++struct TransformOperation { ++ virtual bool operator==(const TransformOperation &other) const = 0; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const TransformOperation &operation); ++ virtual std::string stringifyOperationValue() const = 0; ++#endif // NDEBUG ++ ++ std::string getOperationName() const; ++ virtual TransformOp type() const = 0; ++ virtual bool isRelative() const; ++ ++ static std::shared_ptr fromJSIValue( ++ jsi::Runtime &rt, ++ const jsi::Value &value); ++ static std::shared_ptr fromDynamic( ++ const folly::dynamic &value); ++ folly::dynamic toDynamic() const; ++ virtual folly::dynamic valueToDynamic() const = 0; ++ ++ virtual bool canConvertTo(TransformOp type) const; ++ virtual std::vector> convertTo( ++ TransformOp type) const; ++ ++ virtual TransformMatrix3D toMatrix() const = 0; ++ void assertCanConvertTo(TransformOp type) const; ++}; ++ ++using TransformOperations = std::vector>; ++ ++// Template overload to inherit from in final operation structs ++template ++struct TransformOperationBase : public TransformOperation { ++ const TValue value; ++ ++ explicit TransformOperationBase(const TValue &value) : value(value) {} ++ virtual ~TransformOperationBase() = default; ++ ++ TransformOp type() const override { ++ return TOperation; ++ } ++ ++ bool operator==(const TransformOperation &other) const override { ++ if (type() != other.type()) { ++ return false; ++ } ++ const auto &otherOperation = ++ static_cast &>(other); ++ return value == otherOperation.value; ++ } ++ ++#ifndef NDEBUG ++ std::string stringifyOperationValue() const override; ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h +new file mode 100644 +index 0000000..781ad94 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h +@@ -0,0 +1,124 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++template ++concept ResolvableOperation = requires(TOperation operation) { ++ { ++ operation.value ++ } -> std::convertible_to< ++ typename std::remove_reference_t>; ++ requires Resolvable>; ++}; // NOLINT(readability/braces) ++ ++// Base implementation for simple operations ++template ++class TransformOperationInterpolator ++ : public TransformInterpolatorBase { ++ public: ++ TransformOperationInterpolator( ++ std::shared_ptr defaultOperation) ++ : TransformInterpolatorBase(defaultOperation) {} ++ ++ OperationType interpolate( ++ double progress, ++ const OperationType &from, ++ const OperationType &to, ++ const TransformInterpolatorUpdateContext &context) const override { ++ return OperationType{from.value.interpolate(progress, to.value)}; ++ } ++}; ++ ++// Specialization for PerspectiveOperation ++template <> ++class TransformOperationInterpolator ++ : public TransformInterpolatorBase { ++ public: ++ using TransformInterpolatorBase< ++ PerspectiveOperation>::TransformInterpolatorBase; ++ ++ PerspectiveOperation interpolate( ++ double progress, ++ const PerspectiveOperation &from, ++ const PerspectiveOperation &to, ++ const TransformInterpolatorUpdateContext &context) const override; ++}; ++ ++// Specialization for MatrixOperation ++template <> ++class TransformOperationInterpolator ++ : public TransformInterpolatorBase { ++ public: ++ using TransformInterpolatorBase::TransformInterpolatorBase; ++ ++ MatrixOperation interpolate( ++ double progress, ++ const MatrixOperation &from, ++ const MatrixOperation &to, ++ const TransformInterpolatorUpdateContext &context) const override; ++ ++ private: ++ TransformMatrix3D matrixFromOperation( ++ const MatrixOperation &matrixOperation, ++ const TransformInterpolatorUpdateContext &context) const; ++}; ++ ++// Specialization for resolvable operations ++template ++class TransformOperationInterpolator ++ : public TransformInterpolatorBase { ++ public: ++ TransformOperationInterpolator( ++ const std::shared_ptr &defaultOperation, ++ RelativeTo relativeTo, ++ const std::string &relativeProperty) ++ : TransformInterpolatorBase(defaultOperation), ++ relativeTo_(relativeTo), ++ relativeProperty_(relativeProperty) {} ++ ++ TOperation interpolate( ++ double progress, ++ const TOperation &from, ++ const TOperation &to, ++ const TransformInterpolatorUpdateContext &context) const override { ++ return TOperation{from.value.interpolate( ++ progress, to.value, getResolvableValueContext(context))}; ++ } ++ ++ TOperation resolveOperation( ++ const TOperation &operation, ++ const TransformInterpolatorUpdateContext &context) const override { ++ const auto &resolved = ++ operation.value.resolve(getResolvableValueContext(context)); ++ ++ if (!resolved.has_value()) { ++ return TOperation{operation.value}; ++ } ++ ++ return TOperation{resolved.value()}; ++ } ++ ++ private: ++ const RelativeTo relativeTo_; ++ const std::string relativeProperty_; ++ ++ CSSResolvableValueInterpolationContext getResolvableValueContext( ++ const TransformInterpolatorUpdateContext &context) const { ++ return { ++ .node = context.node, ++ .viewStylesRepository = context.viewStylesRepository, ++ .relativeProperty = relativeProperty_, ++ .relativeTo = relativeTo_, ++ }; ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h +new file mode 100644 +index 0000000..b0f5b10 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h +@@ -0,0 +1,98 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++struct TransformKeyframe { ++ const double fromOffset; ++ const double toOffset; ++ // If the value is nullopt, we would have to read it from the view style ++ // (in all other cases, both vectors will have the same number of elements of ++ // corresponding types - elements from the same index will form interpolation ++ // pairs) ++ const std::optional fromOperations; ++ const std::optional toOperations; ++}; ++ ++class TransformsStyleInterpolator final : public PropertyInterpolator { ++ public: ++ TransformsStyleInterpolator( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &interpolators, ++ const std::shared_ptr &viewStylesRepository); ++ ++ folly::dynamic getStyleValue( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getResetStyle( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getFirstKeyframeValue() const override; ++ folly::dynamic getLastKeyframeValue() const override; ++ bool equalsReversingAdjustedStartValue( ++ const folly::dynamic &propertyValue) const override; ++ ++ folly::dynamic interpolate( ++ const std::shared_ptr &shadowNode, ++ const std::shared_ptr &progressProvider) ++ const override; ++ ++ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; ++ void updateKeyframesFromStyleChange( ++ const folly::dynamic &oldStyleValue, ++ const folly::dynamic &newStyleValue, ++ const folly::dynamic &lastUpdateValue) override; ++ ++ private: ++ const std::shared_ptr interpolators_; ++ static const TransformOperations defaultStyleValue_; ++ ++ std::vector> keyframes_; ++ std::optional reversingAdjustedStartValue_; ++ ++ static std::optional parseTransformOperations( ++ jsi::Runtime &rt, ++ const jsi::Value &values); ++ static std::optional parseTransformOperations( ++ const folly::dynamic &values); ++ std::shared_ptr createTransformKeyframe( ++ double fromOffset, ++ double toOffset, ++ const std::optional &fromOperationsOptional, ++ const std::optional &toOperationsOptional) const; ++ std::pair ++ createTransformInterpolationPair( ++ const TransformOperations &fromOperations, ++ const TransformOperations &toOperations) const; ++ void addConvertedOperations( ++ const std::shared_ptr &sourceOperation, ++ const std::shared_ptr &targetOperation, ++ TransformOperations &sourceResult, ++ TransformOperations &targetResult) const; ++ std::shared_ptr getDefaultOperationOfType( ++ TransformOp type) const; ++ ++ size_t getIndexOfCurrentKeyframe( ++ const std::shared_ptr &progressProvider) const; ++ TransformOperations getFallbackValue( ++ const std::shared_ptr &shadowNode) const; ++ TransformOperations interpolateOperations( ++ const std::shared_ptr &shadowNode, ++ double keyframeProgress, ++ const TransformOperations &fromOperations, ++ const TransformOperations &toOperations) const; ++ ++ static folly::dynamic convertResultToDynamic( ++ const TransformOperations &operations); ++ TransformInterpolatorUpdateContext createUpdateContext( ++ const std::shared_ptr &shadowNode) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/matrix.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/matrix.h +new file mode 100644 +index 0000000..fe22827 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/matrix.h +@@ -0,0 +1,29 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++// Matrix ++struct MatrixOperation final ++ : public TransformOperationBase< ++ TransformOp::Matrix, ++ std::variant> { ++ using TransformOperationBase< ++ TransformOp::Matrix, ++ std::variant>:: ++ TransformOperationBase; ++ ++ explicit MatrixOperation(const TransformMatrix3D &value); ++ explicit MatrixOperation(const TransformOperations &operations); ++ ++ bool operator==(const TransformOperation &other) const override; ++ ++ folly::dynamic valueToDynamic() const override; ++ TransformMatrix3D toMatrix() const override; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/perspective.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/perspective.h +new file mode 100644 +index 0000000..09f7b82 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/perspective.h +@@ -0,0 +1,25 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated::css { ++ ++struct PerspectiveOperation final ++ : public TransformOperationBase { ++ using TransformOperationBase:: ++ TransformOperationBase; ++ ++ explicit PerspectiveOperation(double value) ++ : TransformOperationBase( ++ CSSDouble(value)) {} ++ ++ folly::dynamic valueToDynamic() const override { ++ return value.value != 0 ? value.toDynamic() : folly::dynamic(); ++ } ++ ++ TransformMatrix3D toMatrix() const override { ++ return TransformMatrix3D::create(value.value); ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/rotate.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/rotate.h +new file mode 100644 +index 0000000..342e846 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/rotate.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++template ++struct RotateOperationBase ++ : public TransformOperationBase { ++ using TransformOperationBase::TransformOperationBase; ++ ++ explicit RotateOperationBase(const std::string &value) ++ : TransformOperationBase(CSSAngle(value)) {} ++ ++ folly::dynamic valueToDynamic() const override { ++ return this->value.toDynamic(); ++ } ++ ++ TransformMatrix3D toMatrix() const override { ++ return TransformMatrix3D::create(this->value.value); ++ } ++}; ++ ++using RotateOperation = RotateOperationBase; ++ ++using RotateXOperation = RotateOperationBase; ++ ++using RotateYOperation = RotateOperationBase; ++ ++struct RotateZOperation final ++ : public RotateOperationBase { ++ using RotateOperationBase::RotateOperationBase; ++ ++ bool canConvertTo(TransformOp type) const override { ++ return type == TransformOp::Rotate; ++ } ++ ++ TransformOperations convertTo(TransformOp type) const override { ++ assertCanConvertTo(type); ++ return {std::make_shared(value)}; ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/scale.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/scale.h +new file mode 100644 +index 0000000..3889589 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/scale.h +@@ -0,0 +1,51 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++template ++struct ScaleOperationBase ++ : public TransformOperationBase { ++ using TransformOperationBase::TransformOperationBase; ++ ++ explicit ScaleOperationBase(const double value) ++ : TransformOperationBase(CSSDouble(value)) {} ++ ++ folly::dynamic valueToDynamic() const override { ++ return this->value.toDynamic(); ++ } ++ ++ TransformMatrix3D toMatrix() const override { ++ return TransformMatrix3D::create(this->value.value); ++ } ++}; ++ ++using ScaleXOperation = ScaleOperationBase; ++ ++using ScaleYOperation = ScaleOperationBase; ++ ++struct ScaleOperation final : public ScaleOperationBase { ++ using ScaleOperationBase::ScaleOperationBase; ++ ++ bool canConvertTo(TransformOp type) const override { ++ return type == TransformOp::ScaleX || type == TransformOp::ScaleY; ++ } ++ ++ TransformOperations convertTo(TransformOp type) const override { ++ assertCanConvertTo(type); ++ if (type == TransformOp::ScaleX) { ++ return { ++ std::make_shared(value), ++ std::make_shared(value)}; ++ } else { ++ return { ++ std::make_shared(value), ++ std::make_shared(value)}; ++ } ++ } ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/skew.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/skew.h +new file mode 100644 +index 0000000..d23502f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/skew.h +@@ -0,0 +1,29 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++template ++struct SkewOperationBase : public TransformOperationBase { ++ using TransformOperationBase::TransformOperationBase; ++ ++ explicit SkewOperationBase(const std::string &value) ++ : TransformOperationBase(CSSAngle(value)) {} ++ ++ folly::dynamic valueToDynamic() const override { ++ return this->value.toDynamic(); ++ } ++ ++ TransformMatrix3D toMatrix() const override { ++ return TransformMatrix3D::create(this->value.value); ++ } ++}; ++ ++using SkewXOperation = SkewOperationBase; ++ ++using SkewYOperation = SkewOperationBase; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/translate.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/translate.h +new file mode 100644 +index 0000000..44f0665 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/translate.h +@@ -0,0 +1,40 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++template ++struct TranslateOperationBase ++ : public TransformOperationBase { ++ using TransformOperationBase::TransformOperationBase; ++ ++ explicit TranslateOperationBase(double value) ++ : TransformOperationBase(CSSLength(value)) {} ++ explicit TranslateOperationBase(const std::string &value) ++ : TransformOperationBase(CSSLength(value)) {} ++ ++ bool isRelative() const override { ++ return this->value.isRelative; ++ } ++ ++ folly::dynamic valueToDynamic() const override { ++ return this->value.toDynamic(); ++ } ++ ++ TransformMatrix3D toMatrix() const override { ++ if (this->value.isRelative) { ++ throw std::invalid_argument( ++ "[Reanimated] Cannot convert relative translate to the matrix."); ++ } ++ return TransformMatrix3D::create(this->value.value); ++ } ++}; ++ ++using TranslateXOperation = TranslateOperationBase; ++ ++using TranslateYOperation = TranslateOperationBase; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h +new file mode 100644 +index 0000000..a5af3e6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h +@@ -0,0 +1,49 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++/** ++ * Concrete implementation of ValueInterpolator for CSS values that require ++ * resolution before interpolation. This class handles interpolation of relative ++ * values (e.g., percentage length values) that need to be resolved to absolute ++ * values using the context describing the ShadowNode before the interpolation ++ * can occur. ++ */ ++template ++class ResolvableValueInterpolator final ++ : public SimpleValueInterpolator { ++ static_assert( ++ (... && std::is_base_of::value), ++ "[Reanimated] ResolvableValueInterpolator: All interpolated types must inherit from CSSValue"); ++ ++ public: ++ using ValueType = ++ typename SimpleValueInterpolator::ValueType; ++ ++ explicit ResolvableValueInterpolator( ++ const PropertyPath &propertyPath, ++ const ValueType &defaultStyleValue, ++ const std::shared_ptr &viewStylesRepository, ++ RelativeTo relativeTo, ++ std::string relativeProperty); ++ ++ protected: ++ folly::dynamic interpolateValue( ++ double progress, ++ const std::shared_ptr &fromValue, ++ const std::shared_ptr &toValue, ++ const ValueInterpolatorUpdateContext &context) const override; ++ ++ private: ++ RelativeTo relativeTo_; ++ std::string relativeProperty_; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h +new file mode 100644 +index 0000000..b1460ae +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h +@@ -0,0 +1,43 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++/** ++ * Concrete implementation of ValueInterpolator for simple CSS values that don't ++ * require resolution before interpolation. This class handles direct ++ * interpolation between values without any additional processing or resolution. ++ */ ++template ++class SimpleValueInterpolator : public ValueInterpolator { ++ static_assert( ++ (... && std::is_base_of::value), ++ "[Reanimated] SimpleValueInterpolator: All interpolated types must inherit from CSSValue"); ++ ++ public: ++ using ValueType = CSSValueVariant; ++ ++ explicit SimpleValueInterpolator( ++ const PropertyPath &propertyPath, ++ const ValueType &defaultStyleValue, ++ const std::shared_ptr &viewStylesRepository); ++ ++ protected: ++ std::shared_ptr createValue( ++ jsi::Runtime &rt, ++ const jsi::Value &value) const override; ++ ++ std::shared_ptr createValue( ++ const folly::dynamic &value) const override; ++ ++ folly::dynamic interpolateValue( ++ double progress, ++ const std::shared_ptr &fromValue, ++ const std::shared_ptr &toValue, ++ const ValueInterpolatorUpdateContext &context) const override; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ValueInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ValueInterpolator.h +new file mode 100644 +index 0000000..5dd9537 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ValueInterpolator.h +@@ -0,0 +1,78 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++struct ValueKeyframe { ++ double offset; ++ std::optional> value; ++}; ++ ++/** ++ * Base class for CSS value interpolators that provides common functionality ++ * for interpolating CSS values during animations. This class should be extended ++ * by concrete implementations for specific CSS value types to provide ++ * type-specific interpolation logic. ++ */ ++class ValueInterpolator : public PropertyInterpolator { ++ public: ++ explicit ValueInterpolator( ++ const PropertyPath &propertyPath, ++ const std::shared_ptr &defaultValue, ++ const std::shared_ptr &viewStylesRepository); ++ virtual ~ValueInterpolator() = default; ++ ++ folly::dynamic getStyleValue( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getResetStyle( ++ const std::shared_ptr &shadowNode) const override; ++ folly::dynamic getFirstKeyframeValue() const override; ++ folly::dynamic getLastKeyframeValue() const override; ++ bool equalsReversingAdjustedStartValue( ++ const folly::dynamic &propertyValue) const override; ++ ++ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; ++ void updateKeyframesFromStyleChange( ++ const folly::dynamic &oldStyleValue, ++ const folly::dynamic &newStyleValue, ++ const folly::dynamic &lastUpdateValue) override; ++ ++ folly::dynamic interpolate( ++ const std::shared_ptr &shadowNode, ++ const std::shared_ptr &progressProvider) ++ const override; ++ ++ protected: ++ std::vector keyframes_; ++ std::shared_ptr defaultStyleValue_; ++ folly::dynamic defaultStyleValueDynamic_; ++ folly::dynamic reversingAdjustedStartValue_; ++ ++ virtual std::shared_ptr createValue( ++ jsi::Runtime &rt, ++ const jsi::Value &value) const = 0; ++ virtual std::shared_ptr createValue( ++ const folly::dynamic &value) const = 0; ++ virtual folly::dynamic interpolateValue( ++ double progress, ++ const std::shared_ptr &fromValue, ++ const std::shared_ptr &toValue, ++ const ValueInterpolatorUpdateContext &context) const = 0; ++ ++ private: ++ folly::dynamic convertOptionalToDynamic( ++ const std::optional> &value) const; ++ std::shared_ptr getFallbackValue( ++ const std::shared_ptr &shadowNode) const; ++ size_t getToKeyframeIndex( ++ const std::shared_ptr &progressProvider) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/misc/ViewStylesRepository.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/misc/ViewStylesRepository.h +new file mode 100644 +index 0000000..8365c0d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/misc/ViewStylesRepository.h +@@ -0,0 +1,61 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++using namespace react; ++ ++struct CachedShadowNode { ++ LayoutMetrics layoutMetrics; ++ std::shared_ptr viewProps; ++}; ++ ++class ViewStylesRepository { ++ public: ++ ViewStylesRepository( ++ const std::shared_ptr &staticPropsRegistry, ++ const std::shared_ptr &animatedPropsRegistry); ++ ++ void setUIManager(const std::shared_ptr &uiManager) { ++ uiManager_ = uiManager; ++ } ++ ++ jsi::Value getNodeProp( ++ const std::shared_ptr &shadowNode, ++ const std::string &propName); ++ jsi::Value getParentNodeProp( ++ const std::shared_ptr &shadowNode, ++ const std::string &propName); ++ folly::dynamic getStyleProp(Tag tag, const PropertyPath &propertyPath); ++ ++ void clearNodesCache(); ++ ++ private: ++ std::shared_ptr uiManager_; ++ std::shared_ptr staticPropsRegistry_; ++ std::shared_ptr animatedPropsRegistry_; ++ ++ std::unordered_map shadowNodeCache_; ++ ++ void updateCacheIfNeeded( ++ CachedShadowNode &cachedNode, ++ const std::shared_ptr &shadowNode); ++ ++ static folly::dynamic getPropertyValue( ++ const folly::dynamic &value, ++ const PropertyPath &propertyPath); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/AnimationProgressProvider.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/AnimationProgressProvider.h +new file mode 100644 +index 0000000..74f2257 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/AnimationProgressProvider.h +@@ -0,0 +1,68 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++enum class AnimationProgressState { ++ Pending, // When the animation is waiting for the delay to pass ++ Running, ++ Paused, ++ Finished ++}; ++ ++class AnimationProgressProvider final : public KeyframeProgressProvider, ++ public RawProgressProvider { ++ public: ++ AnimationProgressProvider( ++ double timestamp, ++ double duration, ++ double delay, ++ double iterationCount, ++ AnimationDirection direction, ++ EasingFunction easingFunction, ++ const std::shared_ptr &keyframeEasingFunctions); ++ ++ void setIterationCount(double iterationCount); ++ void setDirection(AnimationDirection direction); ++ void setEasingFunction(const EasingFunction &easingFunction); ++ ++ AnimationDirection getDirection() const; ++ double getGlobalProgress() const override; ++ double getKeyframeProgress(double fromOffset, double toOffset) const override; ++ AnimationProgressState getState(double timestamp) const; ++ double getPauseTimestamp() const; ++ double getTotalPausedTime(double timestamp) const; ++ double getStartTimestamp(double timestamp) const; ++ ++ void pause(double timestamp); ++ void play(double timestamp); ++ void resetProgress() override; ++ ++ protected: ++ std::optional calculateRawProgress(double timestamp) override; ++ ++ private: ++ double iterationCount_; ++ AnimationDirection direction_; ++ EasingFunction easingFunction_; ++ std::shared_ptr keyframeEasingFunctions_; ++ ++ unsigned currentIteration_ = 1; ++ double previousIterationsDuration_ = 0; ++ double pauseTimestamp_ = 0; ++ double totalPausedTime_ = 0; ++ ++ bool shouldFinish(double timestamp) const; ++ ++ double updateIterationProgress(double currentIterationElapsedTime); ++ double applyAnimationDirection(double iterationProgress) const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/KeyframeProgressProvider.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/KeyframeProgressProvider.h +new file mode 100644 +index 0000000..2b61d44 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/KeyframeProgressProvider.h +@@ -0,0 +1,13 @@ ++#pragma once ++ ++namespace reanimated::css { ++ ++class KeyframeProgressProvider { ++ public: ++ virtual double getGlobalProgress() const = 0; ++ ++ virtual double getKeyframeProgress(double fromOffset, double toOffset) ++ const = 0; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/RawProgressProvider.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/RawProgressProvider.h +new file mode 100644 +index 0000000..9256aad +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/RawProgressProvider.h +@@ -0,0 +1,31 @@ ++#pragma once ++ ++#include ++namespace reanimated::css { ++ ++class RawProgressProvider { ++ public: ++ RawProgressProvider(double timestamp, double duration, double delay); ++ ++ void setDuration(double duration); ++ void setDelay(double delay); ++ ++ virtual void resetProgress(); ++ void update(double timestamp); ++ ++ protected: ++ double duration_; ++ double delay_; ++ double creationTimestamp_; ++ ++ std::optional rawProgress_; ++ std::optional previousRawProgress_; ++ ++ /** ++ * Calculates the progress of the animation at the given timestamp without ++ * applying any decorations (e.g. animation direction, easing) ++ */ ++ virtual std::optional calculateRawProgress(double timestamp) = 0; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/TransitionProgressProvider.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/TransitionProgressProvider.h +new file mode 100644 +index 0000000..696605b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/TransitionProgressProvider.h +@@ -0,0 +1,82 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++enum class TransitionProgressState { Pending, Running, Finished }; ++ ++class TransitionPropertyProgressProvider final ++ : public KeyframeProgressProvider, ++ public RawProgressProvider { ++ public: ++ TransitionPropertyProgressProvider( ++ double timestamp, ++ double duration, ++ double delay, ++ const EasingFunction &easingFunction); ++ TransitionPropertyProgressProvider( ++ double timestamp, ++ double duration, ++ double delay, ++ const EasingFunction &easingFunction, ++ double reversingShorteningFactor); ++ ++ double getGlobalProgress() const override; ++ double getKeyframeProgress(double fromOffset, double toOffset) const override; ++ double getRemainingDelay(double timestamp) const; ++ double getReversingShorteningFactor() const; ++ TransitionProgressState getState() const; ++ ++ protected: ++ std::optional calculateRawProgress(double timestamp) override; ++ ++ private: ++ EasingFunction easingFunction_; ++ double reversingShorteningFactor_ = 1; ++ ++ double getElapsedTime(double timestamp) const; ++}; ++ ++using TransitionPropertyProgressProviders = std::unordered_map< ++ std::string, ++ std::shared_ptr>; ++ ++class TransitionProgressProvider final { ++ public: ++ TransitionProgressState getState() const; ++ double getMinDelay(double timestamp) const; ++ TransitionPropertyProgressProviders getPropertyProgressProviders() const; ++ std::unordered_set getRemovedProperties() const; ++ ++ void discardFinishedProgressProviders(); ++ void discardIrrelevantProgressProviders( ++ const std::unordered_set &transitionPropertyNames); ++ void runProgressProviders( ++ double timestamp, ++ const CSSTransitionPropertiesSettings &propertiesSettings, ++ const PropertyNames &changedPropertyNames, ++ const std::unordered_set &reversedPropertyNames); ++ void update(double timestamp); ++ ++ private: ++ TransitionPropertyProgressProviders propertyProgressProviders_; ++ ++ std::unordered_set removedProperties_; ++ ++ std::shared_ptr ++ createReversingShorteningProgressProvider( ++ double timestamp, ++ const CSSTransitionPropertySettings &propertySettings, ++ const TransitionPropertyProgressProvider &existingProgressProvider); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSAnimationsRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSAnimationsRegistry.h +new file mode 100644 +index 0000000..c9330a1 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSAnimationsRegistry.h +@@ -0,0 +1,95 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using CSSAnimationsMap = ++ std::unordered_map>; ++using CSSAnimationsVector = std::vector>; ++ ++class CSSAnimationsRegistry ++ : public UpdatesRegistry, ++ std::enable_shared_from_this { ++ public: ++ using SettingsUpdates = ++ std::vector>; ++ ++ bool isEmpty() const override; ++ bool hasUpdates() const; ++ ++ void apply( ++ jsi::Runtime &rt, ++ const std::shared_ptr &shadowNode, ++ const std::optional> &animationNames, ++ const CSSAnimationsMap &newAnimations, ++ const CSSAnimationSettingsUpdatesMap &settingsUpdates, ++ double timestamp); ++ void remove(Tag viewTag) override; ++ ++ void update(double timestamp); ++ ++ private: ++ using AnimationToIndexMap = ++ std::unordered_map, size_t>; ++ using RunningAnimationIndicesMap = std::unordered_map>; ++ using AnimationsToRevertMap = ++ std::unordered_map>; ++ struct RegistryEntry { ++ const CSSAnimationsVector animationsVector; ++ const AnimationToIndexMap animationToIndexMap; ++ }; ++ ++ using Registry = std::unordered_map; ++ ++ Registry registry_; ++ ++ RunningAnimationIndicesMap runningAnimationIndicesMap_; ++ AnimationsToRevertMap animationsToRevertMap_; ++ DelayedItemsManager> delayedAnimationsManager_; ++ ++ CSSAnimationsVector buildAnimationsVector( ++ jsi::Runtime &rt, ++ const std::shared_ptr &shadowNode, ++ const std::optional> &animationNames, ++ const std::optional &newAnimations) const; ++ AnimationToIndexMap buildAnimationToIndexMap( ++ const CSSAnimationsVector &animationsVector) const; ++ void updateAnimationSettings( ++ const CSSAnimationsVector &animationsVector, ++ const CSSAnimationSettingsUpdatesMap &settingsUpdates, ++ double timestamp); ++ ++ void updateViewAnimations( ++ Tag viewTag, ++ const std::vector &animationIndices, ++ double timestamp, ++ bool addToBatch); ++ void scheduleOrActivateAnimation( ++ size_t animationIndex, ++ const std::shared_ptr &animation, ++ double timestamp); ++ void removeViewAnimations(Tag viewTag); ++ void applyViewAnimationsStyle(Tag viewTag, double timestamp); ++ void activateDelayedAnimations(double timestamp); ++ void handleAnimationsToRevert(double timestamp); ++ ++ static bool addStyleUpdates( ++ folly::dynamic &target, ++ const folly::dynamic &updates, ++ bool shouldOverride); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSKeyframesRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSKeyframesRegistry.h +new file mode 100644 +index 0000000..c253890 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSKeyframesRegistry.h +@@ -0,0 +1,38 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class CSSKeyframesRegistry { ++ public: ++ CSSKeyframesRegistry( ++ const std::shared_ptr &viewStylesRepository); ++ ++ const CSSKeyframesConfig &get( ++ const std::string &animationName, ++ const std::string &componentName); ++ void set( ++ const std::string &animationName, ++ const std::string &componentName, ++ CSSKeyframesConfig &&config); ++ void remove( ++ const std::string &animationName, ++ const std::string &componentName); ++ ++ private: ++ using ConfigsByComponentName = ++ std::unordered_map; ++ ++ std::unordered_map registry_; ++ const std::shared_ptr viewStylesRepository_; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSTransitionsRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSTransitionsRegistry.h +new file mode 100644 +index 0000000..c0aa7a6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSTransitionsRegistry.h +@@ -0,0 +1,56 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++class CSSTransitionsRegistry ++ : public UpdatesRegistry, ++ public std::enable_shared_from_this { ++ public: ++ CSSTransitionsRegistry( ++ const std::shared_ptr &staticPropsRegistry, ++ const GetAnimationTimestampFunction &getCurrentTimestamp); ++ ++ bool isEmpty() const override; ++ bool hasUpdates() const; ++ ++ void add(const std::shared_ptr &transition); ++ void updateSettings(Tag viewTag, const PartialCSSTransitionConfig &config); ++ void remove(Tag viewTag) override; ++ ++ void update(double timestamp); ++ ++ private: ++ using Registry = std::unordered_map>; ++ ++ const GetAnimationTimestampFunction &getCurrentTimestamp_; ++ const std::shared_ptr staticPropsRegistry_; ++ ++ Registry registry_; ++ ++ std::unordered_set runningTransitionTags_; ++ DelayedItemsManager delayedTransitionsManager_; ++ ++ void activateDelayedTransitions(double timestamp); ++ void scheduleOrActivateTransition( ++ const std::shared_ptr &transition); ++ PropsObserver createPropsObserver(Tag viewTag); ++ void updateInUpdatesRegistry( ++ const std::shared_ptr &transition, ++ const folly::dynamic &updates); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/StaticPropsRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/StaticPropsRegistry.h +new file mode 100644 +index 0000000..2b14815 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/StaticPropsRegistry.h +@@ -0,0 +1,37 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++using namespace react; ++ ++using PropsObserver = std::function< ++ void(const folly::dynamic &oldProps, const folly::dynamic &newProps)>; ++ ++class StaticPropsRegistry { ++ public: ++ void set(jsi::Runtime &rt, Tag viewTag, const jsi::Value &props); ++ folly::dynamic get(Tag viewTag) const; ++ bool has(Tag viewTag) const; ++ void remove(Tag viewTag); ++ bool isEmpty() const; ++ ++ bool hasObservers(Tag viewTag) const; ++ void setObserver(Tag viewTag, PropsObserver observer); ++ void removeObserver(Tag viewTag); ++ ++ private: ++ std::unordered_map registry_; ++ std::unordered_map observers_; ++ ++ void notifyObservers( ++ Tag viewTag, ++ const folly::dynamic &oldProps, ++ const folly::dynamic &newProps); ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGLength.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGLength.h +new file mode 100644 +index 0000000..421de88 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGLength.h +@@ -0,0 +1,36 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated::css { ++ ++struct SVGLength : public CSSSimpleValue { ++ double value; ++ bool isPercentage; ++ ++ SVGLength(); ++ explicit SVGLength(double value); ++ explicit SVGLength(double value, bool isPercentage); ++ explicit SVGLength(const char *value); ++ explicit SVGLength(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit SVGLength(const folly::dynamic &value); ++ ++ static bool canConstruct(const std::string &value); ++ static bool canConstruct(const char *value); ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ SVGLength interpolate(double progress, const SVGLength &to) const override; ++ ++ bool operator==(const SVGLength &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<(std::ostream &os, const SVGLength &dimension); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGStrokeDashArray.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGStrokeDashArray.h +new file mode 100644 +index 0000000..79388d2 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGStrokeDashArray.h +@@ -0,0 +1,36 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++struct SVGStrokeDashArray : public CSSSimpleValue { ++ std::vector values; ++ ++ SVGStrokeDashArray(); ++ explicit SVGStrokeDashArray(const std::vector &values); ++ explicit SVGStrokeDashArray(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ explicit SVGStrokeDashArray(const folly::dynamic &value); ++ ++ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); ++ static bool canConstruct(const folly::dynamic &value); ++ ++ folly::dynamic toDynamic() const override; ++ std::string toString() const override; ++ SVGStrokeDashArray interpolate(double progress, const SVGStrokeDashArray &to) ++ const override; ++ ++ bool operator==(const SVGStrokeDashArray &other) const; ++ ++#ifndef NDEBUG ++ friend std::ostream &operator<<( ++ std::ostream &os, ++ const SVGStrokeDashArray &strokeDashArray); ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/DelayedItemsManager.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/DelayedItemsManager.h +new file mode 100644 +index 0000000..5f6292b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/DelayedItemsManager.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++template ++struct DelayedItem { ++ const double timestamp; ++ const TValue value; ++ ++ DelayedItem(double timestamp, TValue value); ++}; ++ ++template ++struct DelayedItemComparator { ++ bool operator()( ++ const DelayedItem &lhs, ++ const DelayedItem &rhs) const; ++}; ++ ++template ++class DelayedItemsManager { ++ using Item = DelayedItem; ++ using ItemSet = std::set>; ++ using ItemMap = std::unordered_map; ++ ++ ItemSet itemsSet_; ++ ItemMap itemsMap_; ++ ++ public: ++ void add(double timestamp, TValue value); ++ Item pop(); ++ bool remove(TValue value); ++ const Item &top() const; ++ bool empty() const; ++ size_t size() const; ++}; ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/algorithms.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/algorithms.h +new file mode 100644 +index 0000000..1221ae3 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/algorithms.h +@@ -0,0 +1,10 @@ ++#pragma once ++ ++#include ++#include ++ ++namespace reanimated::css { ++ ++size_t firstSmallerOrEqual(double x, const std::vector &arr); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/interpolators.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/interpolators.h +new file mode 100644 +index 0000000..01a22ea +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/interpolators.h +@@ -0,0 +1,23 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++std::shared_ptr createPropertyInterpolator( ++ const std::string &propertyName, ++ const PropertyPath &propertyPath, ++ const InterpolatorFactoriesRecord &factories, ++ const std::shared_ptr &viewStylesRepository); ++ ++std::shared_ptr createPropertyInterpolator( ++ size_t arrayIndex, ++ const PropertyPath &propertyPath, ++ const InterpolatorFactoriesArray &factories, ++ const std::shared_ptr &viewStylesRepository); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/keyframes.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/keyframes.h +new file mode 100644 +index 0000000..d7842e6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/keyframes.h +@@ -0,0 +1,15 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++using namespace facebook; ++ ++std::vector> parseJSIKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &keyframes); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/props.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/props.h +new file mode 100644 +index 0000000..9c1cecd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/props.h +@@ -0,0 +1,36 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated::css { ++ ++struct ChangedProps { ++ const folly::dynamic oldProps; ++ const folly::dynamic newProps; ++ const PropertyNames changedPropertyNames; ++}; ++ ++bool isDiscreteProperty( ++ const std::string &propName, ++ const std::string &componentName); ++ ++// We need to specify it here because there are 2 methods referencing ++// each other in the recursion and areArraysDifferentRecursive must be ++// aware that getChangedPropsRecursive exists ++std::pair getChangedPropsRecursive( ++ const folly::dynamic &oldProp, ++ const folly::dynamic &newProp); ++ ++ChangedProps getChangedProps( ++ const folly::dynamic &oldProps, ++ const folly::dynamic &newProps, ++ const PropertyNames &allowedProperties); ++ ++} // namespace reanimated::css +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitHook.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitHook.h +new file mode 100644 +index 0000000..1ca39bf +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitHook.h +@@ -0,0 +1,51 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++ ++using namespace facebook::react; ++ ++namespace reanimated { ++ ++class ReanimatedCommitHook ++ : public UIManagerCommitHook, ++ public std::enable_shared_from_this { ++ public: ++ ReanimatedCommitHook( ++ const std::shared_ptr &uiManager, ++ const std::shared_ptr &updatesRegistryManager, ++ const std::shared_ptr &layoutAnimationsProxy); ++ ++ ~ReanimatedCommitHook() noexcept override; ++ ++ void commitHookWasRegistered(UIManager const &) noexcept override {} ++ ++ void commitHookWasUnregistered(UIManager const &) noexcept override {} ++ ++ void maybeInitializeLayoutAnimations(SurfaceId surfaceId); ++ ++ RootShadowNode::Unshared shadowTreeWillCommit( ++ ShadowTree const &shadowTree, ++ RootShadowNode::Shared const &oldRootShadowNode, ++ RootShadowNode::Unshared const &newRootShadowNode ++#if REACT_NATIVE_MINOR_VERSION >= 80 ++ , ++ const ShadowTreeCommitOptions &commitOptions ++#endif ++ ) noexcept override; ++ ++ private: ++ std::shared_ptr uiManager_; ++ std::shared_ptr updatesRegistryManager_; ++ std::shared_ptr layoutAnimationsProxy_; ++ ++ SurfaceId currentMaxSurfaceId_ = -1; ++ ++ std::mutex mutex_; // Protects `currentMaxSurfaceId_`. ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitShadowNode.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitShadowNode.h +new file mode 100644 +index 0000000..5263921 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitShadowNode.h +@@ -0,0 +1,46 @@ ++#pragma once ++ ++#include ++ ++using namespace facebook::react; ++ ++namespace reanimated { ++ ++// We use this trait to mark that a commit was created by Reanimated. ++// Traits are copied when nodes are cloned, so this information ++// won't be lost unless someone explicitly overrides it. ++// We need this information to skip unnecessary updates in ++// the commit hook. ++// Currently RN traits go up to 10, so hopefully ++// the arbitrarily chosen numbers 27 and 28 will be safe :) ++ ++// We have to use 2 traits, because we want to distinguish reanimated ++// commits both in the commit hook and mount hook. If we only had one trait ++// and didn't remove it in the commit hook, then any node that would clone ++// this node would also have our commit trait, rendering this trait useless. ++constexpr ShadowNodeTraits::Trait ReanimatedCommitTrait{1 << 27}; ++constexpr ShadowNodeTraits::Trait ReanimatedMountTrait{1 << 28}; ++ ++class ReanimatedCommitShadowNode : public ShadowNode { ++ public: ++ inline void setReanimatedCommitTrait() { ++ traits_.set(ReanimatedCommitTrait); ++ } ++ inline void unsetReanimatedCommitTrait() { ++ traits_.unset(ReanimatedCommitTrait); ++ } ++ inline bool hasReanimatedCommitTrait() { ++ return traits_.check(ReanimatedCommitTrait); ++ } ++ inline void setReanimatedMountTrait() { ++ traits_.set(ReanimatedMountTrait); ++ } ++ inline void unsetReanimatedMountTrait() { ++ traits_.unset(ReanimatedMountTrait); ++ } ++ inline bool hasReanimatedMountTrait() { ++ return traits_.check(ReanimatedMountTrait); ++ } ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedMountHook.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedMountHook.h +new file mode 100644 +index 0000000..ea077dd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedMountHook.h +@@ -0,0 +1,37 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook::react; ++ ++class ReanimatedMountHook : public UIManagerMountHook { ++ public: ++ ReanimatedMountHook( ++ const std::shared_ptr &uiManager, ++ const std::shared_ptr &updatesRegistryManager, ++ const std::function &requestFlush); ++ ~ReanimatedMountHook() noexcept override; ++ ++ void shadowTreeDidMount( ++ RootShadowNode::Shared const &rootShadowNode, ++#if REACT_NATIVE_MINOR_VERSION >= 81 ++ HighResTimeStamp /*unmountTime*/ ++#else ++ double /*unmountTime*/ ++#endif // REACT_NATIVE_MINOR_VERSION >= 81 ++ ) noexcept override; ++ ++ private: ++ const std::shared_ptr uiManager_; ++ const std::shared_ptr updatesRegistryManager_; ++ const std::function requestFlush_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ShadowTreeCloner.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ShadowTreeCloner.h +new file mode 100644 +index 0000000..278ae1e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ShadowTreeCloner.h +@@ -0,0 +1,26 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++using PropsMap = ++ std::unordered_map>; ++using ChildrenMap = ++ std::unordered_map>; ++ ++RootShadowNode::Unshared cloneShadowTreeWithNewProps( ++ const RootShadowNode &oldRootNode, ++ const PropsMap &propsMap); ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/AnimatedPropsRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/AnimatedPropsRegistry.h +new file mode 100644 +index 0000000..57c2c24 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/AnimatedPropsRegistry.h +@@ -0,0 +1,19 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++class AnimatedPropsRegistry : public UpdatesRegistry { ++ public: ++ void update(jsi::Runtime &rt, const jsi::Value &operations); ++ void remove(Tag tag) override; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistry.h +new file mode 100644 +index 0000000..6f32763 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistry.h +@@ -0,0 +1,78 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace react; ++ ++using UpdatesBatch = ++ std::vector, folly::dynamic>>; ++using RegistryMap = std::unordered_map< ++ Tag, ++ std::pair, folly::dynamic>>; ++ ++#ifdef ANDROID ++struct PropsToRevert { ++ std::shared_ptr shadowNode; ++ std::unordered_set props; ++}; ++ ++using PropsToRevertMap = std::unordered_map; ++#endif ++ ++class UpdatesRegistry { ++ public: ++ virtual ~UpdatesRegistry() {} ++ ++ std::lock_guard lock() const; ++ ++ virtual bool isEmpty() const; ++ folly::dynamic get(Tag tag) const; ++ virtual void remove(Tag tag) = 0; ++ ++#ifdef ANDROID ++ bool hasPropsToRevert() const; ++ void collectPropsToRevert(PropsToRevertMap &propsToRevertMap); ++#endif ++ ++ void flushUpdates(UpdatesBatch &updatesBatch); ++ void collectProps(PropsMap &propsMap); ++ ++ protected: ++ mutable std::mutex mutex_; ++ RegistryMap updatesRegistry_; ++ ++ void addUpdatesToBatch( ++ const std::shared_ptr &shadowNode, ++ const folly::dynamic &props); ++ folly::dynamic getUpdatesFromRegistry(const Tag tag) const; ++ void setInUpdatesRegistry( ++ const std::shared_ptr &shadowNode, ++ const folly::dynamic &props); ++ void removeFromUpdatesRegistry(Tag tag); ++ ++ private: ++ UpdatesBatch updatesBatch_; ++ ++ void flushUpdatesToRegistry(const UpdatesBatch &updatesBatch); ++ ++#ifdef ANDROID ++ PropsToRevertMap propsToRevertMap_; ++ ++ void updatePropsToRevert(Tag tag, const folly::dynamic *newProps = nullptr); ++#endif ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistryManager.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistryManager.h +new file mode 100644 +index 0000000..b5a54cb +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistryManager.h +@@ -0,0 +1,70 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace css; ++ ++class UpdatesRegistryManager { ++ public: ++ explicit UpdatesRegistryManager( ++ const std::shared_ptr &staticPropsRegistry); ++ ++ std::lock_guard lock() const; ++ ++ // TODO - ensure that other sublibraries can easily hook into this registry ++ // manager (e.g. add priority to registries) ++ void addRegistry(const std::shared_ptr ®istry); ++ ++ void pauseReanimatedCommits(); ++ bool shouldReanimatedSkipCommit(); ++ void unpauseReanimatedCommits(); ++ ++ void pleaseCommitAfterPause(); ++ bool shouldCommitAfterPause(); ++ void cancelCommitAfterPause(); ++ ++ void markNodeAsRemovable(const std::shared_ptr &shadowNode); ++ void unmarkNodeAsRemovable(Tag viewTag); ++ void handleNodeRemovals(const RootShadowNode &rootShadowNode); ++ PropsMap collectProps(); ++ ++#ifdef ANDROID ++ bool hasPropsToRevert(); ++ void collectPropsToRevertBySurface( ++ std::unordered_map &propsMapBySurface); ++ void clearPropsToRevert(SurfaceId surfaceId); ++#endif ++ ++ private: ++ using RemovableShadowNodes = ++ std::unordered_map>; ++ ++ mutable std::mutex mutex_; ++ std::atomic isPaused_; ++ std::atomic shouldCommitAfterPause_; ++ RemovableShadowNodes removableShadowNodes_; ++ std::vector> registries_; ++ const std::shared_ptr staticPropsRegistry_; ++ ++#ifdef ANDROID ++ PropsToRevertMap propsToRevertMap_; ++ ++ static void addToPropsMap( ++ PropsMap &propsMap, ++ const std::shared_ptr &shadowNode, ++ const folly::dynamic &props); ++#endif ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationType.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationType.h +new file mode 100644 +index 0000000..6c36ae0 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationType.h +@@ -0,0 +1,7 @@ ++#pragma once ++ ++typedef enum LayoutAnimationType { ++ ENTERING = 1, ++ EXITING = 2, ++ LAYOUT = 3, ++} LayoutAnimationType; +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsManager.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsManager.h +new file mode 100644 +index 0000000..5e9d3ca +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsManager.h +@@ -0,0 +1,64 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace worklets; ++ ++struct LayoutAnimationConfig { ++ int tag; ++ LayoutAnimationType type; ++ std::shared_ptr config; ++}; ++ ++class LayoutAnimationsManager { ++ public: ++ explicit LayoutAnimationsManager(const std::shared_ptr &jsLogger) ++ : jsLogger_(jsLogger) {} ++ void configureAnimationBatch( ++ const std::vector &layoutAnimationsBatch); ++ void setShouldAnimateExiting(const int tag, const bool value); ++ bool shouldAnimateExiting(const int tag, const bool shouldAnimate); ++ bool hasLayoutAnimation(const int tag, const LayoutAnimationType type); ++ void startLayoutAnimation( ++ jsi::Runtime &rt, ++ const int tag, ++ const LayoutAnimationType type, ++ const jsi::Object &values); ++ void clearLayoutAnimationConfig(const int tag); ++ void cancelLayoutAnimation(jsi::Runtime &rt, const int tag) const; ++ void transferConfigFromNativeID(const int nativeId, const int tag); ++ ++ private: ++ std::unordered_map> &getConfigsForType( ++ const LayoutAnimationType type); ++ ++ std::shared_ptr jsLogger_; ++ ++ std::unordered_map> ++ enteringAnimationsForNativeID_; ++ std::unordered_map> enteringAnimations_; ++ std::unordered_map> exitingAnimations_; ++ std::unordered_map> layoutAnimations_; ++ std::unordered_map shouldAnimateExitingForTag_; ++ mutable std::recursive_mutex ++ animationsMutex_; // Protects `enteringAnimations_`, `exitingAnimations_`, ++ // `layoutAnimations_` and `shouldAnimateExitingForTag_`. ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsProxy.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsProxy.h +new file mode 100644 +index 0000000..8930af9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsProxy.h +@@ -0,0 +1,140 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++class ReanimatedModuleProxy; ++ ++using namespace facebook; ++ ++struct LayoutAnimation { ++ std::shared_ptr finalView, currentView; ++ Tag parentTag; ++ std::optional opacity; ++ int count = 1; ++ LayoutAnimation &operator=(const LayoutAnimation &other) = default; ++}; ++ ++struct LayoutAnimationsProxy ++ : public MountingOverrideDelegate, ++ public std::enable_shared_from_this { ++ mutable std::unordered_map> nodeForTag_; ++ mutable std::unordered_map layoutAnimations_; ++ mutable std::recursive_mutex mutex; ++ mutable SurfaceManager surfaceManager; ++ mutable std::unordered_set> deadNodes; ++ mutable std::unordered_map leastRemoved; ++ mutable std::vector finishedAnimationTags_; ++ std::shared_ptr layoutAnimationsManager_; ++ std::shared_ptr contextContainer_; ++ SharedComponentDescriptorRegistry componentDescriptorRegistry_; ++ jsi::Runtime &uiRuntime_; ++ const std::shared_ptr uiScheduler_; ++ LayoutAnimationsProxy( ++ std::shared_ptr layoutAnimationsManager, ++ SharedComponentDescriptorRegistry componentDescriptorRegistry, ++ std::shared_ptr contextContainer, ++ jsi::Runtime &uiRuntime, ++ const std::shared_ptr uiScheduler) ++ : layoutAnimationsManager_(layoutAnimationsManager), ++ contextContainer_(contextContainer), ++ componentDescriptorRegistry_(componentDescriptorRegistry), ++ uiRuntime_(uiRuntime), ++ uiScheduler_(uiScheduler) {} ++ ++ void startEnteringAnimation(const int tag, ShadowViewMutation &mutation) ++ const; ++ void startExitingAnimation(const int tag, ShadowViewMutation &mutation) const; ++ void startLayoutAnimation(const int tag, const ShadowViewMutation &mutation) ++ const; ++ ++ void transferConfigFromNativeID(const std::string nativeId, const int tag) ++ const; ++ std::optional progressLayoutAnimation( ++ int tag, ++ const jsi::Object &newStyle); ++ std::optional endLayoutAnimation(int tag, bool shouldRemove); ++ void maybeCancelAnimation(const int tag) const; ++ ++ void parseRemoveMutations( ++ std::unordered_map &movedViews, ++ ShadowViewMutationList &mutations, ++ std::vector> &roots) const; ++ void handleRemovals( ++ ShadowViewMutationList &filteredMutations, ++ std::vector> &roots) const; ++ ++ void handleUpdatesAndEnterings( ++ ShadowViewMutationList &filteredMutations, ++ const std::unordered_map &movedViews, ++ ShadowViewMutationList &mutations, ++ const PropsParserContext &propsParserContext, ++ SurfaceId surfaceId) const; ++ void addOngoingAnimations( ++ SurfaceId surfaceId, ++ ShadowViewMutationList &mutations) const; ++ void updateOngoingAnimationTarget( ++ const int tag, ++ const ShadowViewMutation &mutation) const; ++ std::shared_ptr cloneViewWithoutOpacity( ++ facebook::react::ShadowViewMutation &mutation, ++ const PropsParserContext &propsParserContext) const; ++ void maybeRestoreOpacity( ++ LayoutAnimation &layoutAnimation, ++ const jsi::Object &newStyle) const; ++ void maybeUpdateWindowDimensions( ++ facebook::react::ShadowViewMutation &mutation, ++ SurfaceId surfaceId) const; ++ void createLayoutAnimation( ++ const ShadowViewMutation &mutation, ++ ShadowView &oldView, ++ const SurfaceId &surfaceId, ++ const int tag) const; ++ ++ void updateIndexForMutation(ShadowViewMutation &mutation) const; ++ ++ void removeRecursively( ++ std::shared_ptr node, ++ ShadowViewMutationList &mutations) const; ++ bool startAnimationsRecursively( ++ std::shared_ptr node, ++ const bool shouldRemoveSubviewsWithoutAnimations, ++ const bool shouldAnimate, ++ const bool isScreenPop, ++ ShadowViewMutationList &mutations) const; ++ void endAnimationsRecursively( ++ std::shared_ptr node, ++ ShadowViewMutationList &mutations) const; ++ void maybeDropAncestors( ++ std::shared_ptr node, ++ std::shared_ptr child, ++ ShadowViewMutationList &cleanupMutations) const; ++ ++ const ComponentDescriptor &getComponentDescriptorForShadowView( ++ const ShadowView &shadowView) const; ++ ++ // MountingOverrideDelegate ++ ++ bool shouldOverridePullTransaction() const override; ++ std::optional pullTransaction( ++ SurfaceId surfaceId, ++ MountingTransaction::Number number, ++ const TransactionTelemetry &telemetry, ++ ShadowViewMutationList mutations) const override; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsUtils.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsUtils.h +new file mode 100644 +index 0000000..8cf936a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsUtils.h +@@ -0,0 +1,174 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++struct Rect { ++ double width, height; ++}; ++ ++struct Frame { ++ std::optional x, y, width, height; ++ Frame(jsi::Runtime &runtime, const jsi::Object &newStyle) { ++ if (newStyle.hasProperty(runtime, "originX")) { ++ x = newStyle.getProperty(runtime, "originX").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "originY")) { ++ y = newStyle.getProperty(runtime, "originY").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "width")) { ++ width = newStyle.getProperty(runtime, "width").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "height")) { ++ height = newStyle.getProperty(runtime, "height").asNumber(); ++ } ++ } ++}; ++ ++struct UpdateValues { ++ Props::Shared newProps; ++ Frame frame; ++}; ++ ++struct Snapshot { ++ double x, y, width, height, windowWidth, windowHeight; ++ Snapshot(const ShadowView &shadowView, Rect window) { ++ const auto &frame = shadowView.layoutMetrics.frame; ++ x = frame.origin.x; ++ y = frame.origin.y; ++ width = frame.size.width; ++ height = frame.size.height; ++ windowWidth = window.width; ++ windowHeight = window.height; ++ } ++}; ++ ++typedef enum ExitingState { ++ UNDEFINED = 1, ++ WAITING = 2, ++ ANIMATING = 4, ++ DEAD = 8, ++ MOVED = 16, ++ DELETED = 32, ++} ExitingState; ++ ++struct MutationNode; ++ ++/** ++ Represents a view that was either removed or had a child removed from the ++ ShadowTree ++ */ ++struct Node { ++ std::vector> children, unflattenedChildren; ++ std::shared_ptr parent, unflattenedParent; ++ Tag tag; ++ void removeChildFromUnflattenedTree(std::shared_ptr child); ++ void applyMutationToIndices(ShadowViewMutation mutation); ++ void insertChildren(std::vector> &newChildren); ++ void insertUnflattenedChildren( ++ std::vector> &newChildren); ++ virtual bool isMutationMode(); ++ explicit Node(const Tag tag) : tag(tag) {} ++ Node(Node &&node) ++ : children(std::move(node.children)), ++ unflattenedChildren(std::move(node.unflattenedChildren)), ++ tag(node.tag) {} ++ Node(Node &node) ++ : children(node.children), ++ unflattenedChildren(node.unflattenedChildren), ++ tag(node.tag) {} ++ virtual ~Node() = default; ++}; ++ ++/** ++ Represents a view that was removed from the ShadowTree ++ */ ++struct MutationNode : public Node { ++ ShadowViewMutation mutation; ++ ExitingState state = UNDEFINED; ++ explicit MutationNode(ShadowViewMutation &mutation) ++ : Node(mutation.oldChildShadowView.tag), mutation(mutation) {} ++ MutationNode(ShadowViewMutation &mutation, Node &&node) ++ : Node(std::move(node)), mutation(mutation) {} ++ bool isMutationMode() override; ++}; ++ ++struct SurfaceManager { ++ mutable std::unordered_map< ++ SurfaceId, ++ std::shared_ptr>> ++ props_; ++ mutable std::unordered_map windows_; ++ ++ std::unordered_map &getUpdateMap(SurfaceId surfaceId); ++ void ++ updateWindow(SurfaceId surfaceId, double windowWidth, double windowHeight); ++ Rect getWindow(SurfaceId surfaceId); ++}; ++ ++static inline void updateLayoutMetrics( ++ LayoutMetrics &layoutMetrics, ++ Frame &frame) { ++ // we use optional's here to avoid overwriting non-animated values ++ if (frame.width) { ++ layoutMetrics.frame.size.width = *frame.width; ++ } ++ if (frame.height) { ++ layoutMetrics.frame.size.height = *frame.height; ++ } ++ if (frame.x) { ++ layoutMetrics.frame.origin.x = *frame.x; ++ } ++ if (frame.y) { ++ layoutMetrics.frame.origin.y = *frame.y; ++ } ++} ++ ++static inline bool isRNSScreen(std::shared_ptr node) { ++ const auto &componentName = node->mutation.oldChildShadowView.componentName; ++ return !std::strcmp(componentName, "RNSScreenStack") || ++ !std::strcmp(componentName, "RNSScreen") || ++ !std::strcmp(componentName, "RNSModalScreen"); ++} ++ ++static inline bool hasLayoutChanged(const ShadowViewMutation &mutation) { ++ return mutation.oldChildShadowView.layoutMetrics.frame != ++ mutation.newChildShadowView.layoutMetrics.frame; ++} ++ ++static inline void mergeAndSwap( ++ std::vector> &A, ++ std::vector> &B) { ++ std::vector> merged; ++ auto it1 = A.begin(), it2 = B.begin(); ++ while (it1 != A.end() && it2 != B.end()) { ++ if ((*it1)->mutation.index < (*it2)->mutation.index) { ++ merged.push_back(*it1); ++ it1++; ++ } else { ++ merged.push_back(*it2); ++ it2++; ++ } ++ } ++ while (it1 != A.end()) { ++ merged.push_back(*it1); ++ it1++; ++ } ++ while (it2 != B.end()) { ++ merged.push_back(*it2); ++ it2++; ++ } ++ std::swap(A, merged); ++} ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/PropValueProcessor.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/PropValueProcessor.h +new file mode 100644 +index 0000000..e44f2c6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/PropValueProcessor.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace react; ++ ++class PropValueProcessor { ++ public: ++ static const std::unordered_set layoutProps; ++ static const std::unordered_set styleProps; ++ ++ static std::string processPropValue( ++ const std::string &propName, ++ const std::shared_ptr &shadowNode, ++ jsi::Runtime &rt); ++ ++ private: ++ static std::string processLayoutProp( ++ const std::string &propName, ++ const LayoutableShadowNode *layoutableShadowNode); ++ ++ static std::string processStyleProp( ++ const std::string &propName, ++ const std::shared_ptr &viewProps, ++ jsi::Runtime &rt); ++ ++ static std::string intColorToHex(const int val); ++ ++ static jsi::Object boxShadowPreprocessing( ++ const BoxShadow &boxShadow, ++ jsi::Runtime &rt); ++ ++ static bool isLayoutProp(const std::string &propName); ++ ++ static bool isStyleProp(const std::string &propName); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxy.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxy.h +new file mode 100644 +index 0000000..9e0599a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxy.h +@@ -0,0 +1,265 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace css; ++ ++using UpdatesBatch = ++ std::vector, folly::dynamic>>; ++ ++class ReanimatedModuleProxy ++ : public ReanimatedModuleProxySpec, ++ public std::enable_shared_from_this { ++ public: ++ ReanimatedModuleProxy( ++ const std::shared_ptr &workletsModuleProxy, ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &jsCallInvoker, ++ const PlatformDepMethodsHolder &platformDepMethodsHolder, ++ const bool isReducedMotion); ++ ++ // We need this init method to initialize callbacks with ++ // weak_from_this() which is available only after the object ++ // is fully constructed. ++ void init(const PlatformDepMethodsHolder &platformDepMethodsHolder); ++ ++ ~ReanimatedModuleProxy(); ++ ++ jsi::Value registerEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value &worklet, ++ const jsi::Value &eventName, ++ const jsi::Value &emitterReactTag) override; ++ void unregisterEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value ®istrationId) override; ++ ++ jsi::Value getViewProp( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &propName, ++ const jsi::Value &callback) override; ++ ++ jsi::Value getStaticFeatureFlag(jsi::Runtime &rt, const jsi::Value &name) ++ override; ++ jsi::Value setDynamicFeatureFlag( ++ jsi::Runtime &rt, ++ const jsi::Value &name, ++ const jsi::Value &value) override; ++ ++ jsi::Value configureLayoutAnimationBatch( ++ jsi::Runtime &rt, ++ const jsi::Value &layoutAnimationsBatch) override; ++ void setShouldAnimateExiting( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &shouldAnimate) override; ++ ++ void onRender(double timestampMs); ++ ++ bool isAnyHandlerWaitingForEvent( ++ const std::string &eventName, ++ const int emitterReactTag); ++ ++ void maybeRequestRender(); ++ ++ bool handleEvent( ++ const std::string &eventName, ++ const int emitterReactTag, ++ const jsi::Value &payload, ++ double currentTime); ++ ++ inline std::shared_ptr getJSLogger() const { ++ return jsLogger_; ++ } ++ ++ bool handleRawEvent(const RawEvent &rawEvent, double currentTime); ++ ++ void maybeRunCSSLoop(); ++ double getCssTimestamp(); ++ ++ void performOperations(); ++ ++ void setViewStyle( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &viewStyle) override; ++ ++ void markNodeAsRemovable( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper) override; ++ void unmarkNodeAsRemovable(jsi::Runtime &rt, const jsi::Value &viewTag) ++ override; ++ ++ void registerCSSKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &animationName, ++ const jsi::Value &viewName, ++ const jsi::Value &keyframesConfig) override; ++ void unregisterCSSKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &animationName, ++ const jsi::Value &viewName) override; ++ ++ void applyCSSAnimations( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &animationUpdates) override; ++ void unregisterCSSAnimations(const jsi::Value &viewTag) override; ++ ++ void registerCSSTransition( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &transitionConfig) override; ++ void updateCSSTransition( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &configUpdates) override; ++ void unregisterCSSTransition(jsi::Runtime &rt, const jsi::Value &viewTag) ++ override; ++ ++ void cssLoopCallback(const double /*timestampMs*/); ++ ++ void dispatchCommand( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeValue, ++ const jsi::Value &commandNameValue, ++ const jsi::Value &argsValue); ++ ++ jsi::String obtainProp( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &propName); ++ ++ jsi::Value measure(jsi::Runtime &rt, const jsi::Value &shadowNodeValue); ++ ++ void initializeFabric(const std::shared_ptr &uiManager); ++ ++ void initializeLayoutAnimationsProxy(); ++ ++ std::string obtainPropFromShadowNode( ++ jsi::Runtime &rt, ++ const std::string &propName, ++ const std::shared_ptr &shadowNode); ++ ++ jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer) override; ++ void unregisterSensor(jsi::Runtime &rt, const jsi::Value &sensorId) override; ++ ++ void cleanupSensors(); ++ ++ jsi::Value subscribeForKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &keyboardEventContainer, ++ const jsi::Value &isStatusBarTranslucent, ++ const jsi::Value &isNavigationBarTranslucent) override; ++ void unsubscribeFromKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &listenerId) override; ++ ++ inline LayoutAnimationsManager &layoutAnimationsManager() { ++ return *layoutAnimationsManager_; ++ } ++ ++ [[nodiscard]] inline bool isReducedMotion() const { ++ return isReducedMotion_; ++ } ++ ++ [[nodiscard]] inline std::shared_ptr ++ getWorkletsModuleProxy() const { ++ return workletsModuleProxy_; ++ } ++ ++ void requestFlushRegistry(); ++ std::function createRegistriesLeakCheck(); ++ ++ private: ++ void commitUpdates(jsi::Runtime &rt, const UpdatesBatch &updatesBatch); ++ ++ const bool isReducedMotion_; ++ bool shouldFlushRegistry_ = false; ++ std::shared_ptr workletsModuleProxy_; ++ ++ std::unique_ptr eventHandlerRegistry_; ++ const RequestRenderFunction requestRender_; ++ std::vector> frameCallbacks_; ++ volatile bool renderRequested_{false}; ++ std::function onRenderCallback_; ++ AnimatedSensorModule animatedSensorModule_; ++ const std::shared_ptr jsLogger_; ++ std::shared_ptr layoutAnimationsManager_; ++ GetAnimationTimestampFunction getAnimationTimestamp_; ++ ++ bool cssLoopRunning_{false}; ++ bool shouldUpdateCssAnimations_{true}; ++ double currentCssTimestamp_{0}; ++ ++ const std::shared_ptr animatedPropsRegistry_; ++ const std::shared_ptr staticPropsRegistry_; ++ const std::shared_ptr updatesRegistryManager_; ++ const std::shared_ptr viewStylesRepository_; ++ const std::shared_ptr cssAnimationKeyframesRegistry_; ++ const std::shared_ptr cssAnimationsRegistry_; ++ const std::shared_ptr cssTransitionsRegistry_; ++ ++ const SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction_; ++ ++ std::shared_ptr uiManager_; ++ std::shared_ptr layoutAnimationsProxy_; ++ std::shared_ptr commitHook_; ++ std::shared_ptr mountHook_; ++ std::set layoutAnimationFlushRequests_; ++ bool layoutAnimationRenderRequested_; ++ ++ const KeyboardEventSubscribeFunction subscribeForKeyboardEventsFunction_; ++ const KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEventsFunction_; ++ ++#ifndef NDEBUG ++ worklets::SingleInstanceChecker singleInstanceChecker_; ++#endif // NDEBUG ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxySpec.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxySpec.h +new file mode 100644 +index 0000000..11b281b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxySpec.h +@@ -0,0 +1,125 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++class JSI_EXPORT ReanimatedModuleProxySpec : public TurboModule { ++ protected: ++ explicit ReanimatedModuleProxySpec( ++ const std::shared_ptr &jsInvoker); ++ ++ public: ++ // events ++ virtual jsi::Value registerEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value &worklet, ++ const jsi::Value &eventName, ++ const jsi::Value &emitterReactTag) = 0; ++ virtual void unregisterEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value ®istrationId) = 0; ++ ++ // views ++ virtual jsi::Value getViewProp( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &propName, ++ const jsi::Value &callback) = 0; ++ ++ // sensors ++ virtual jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer) = 0; ++ virtual void unregisterSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorId) = 0; ++ ++ // keyboard ++ virtual jsi::Value subscribeForKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &keyboardEventContainer, ++ const jsi::Value &isStatusBarTranslucent, ++ const jsi::Value &isNavigationBarTranslucent) = 0; ++ virtual void unsubscribeFromKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &listenerId) = 0; ++ ++ // feature flags ++ virtual jsi::Value getStaticFeatureFlag( ++ jsi::Runtime &rt, ++ const jsi::Value &name) = 0; ++ ++ virtual jsi::Value setDynamicFeatureFlag( ++ jsi::Runtime &rt, ++ const jsi::Value &name, ++ const jsi::Value &value) = 0; ++ ++ // layout animations ++ virtual jsi::Value configureLayoutAnimationBatch( ++ jsi::Runtime &rt, ++ const jsi::Value &layoutAnimationsBatch) = 0; ++ ++ virtual void setShouldAnimateExiting( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &shouldAnimate) = 0; ++ ++ // JS View style ++ virtual void setViewStyle( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &viewStyle) = 0; ++ ++ // Cleanup ++ virtual void markNodeAsRemovable( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper) = 0; ++ virtual void unmarkNodeAsRemovable( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag) = 0; ++ ++ // CSS animation keyframes ++ virtual void registerCSSKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &animationName, ++ const jsi::Value &viewName, ++ const jsi::Value &keyframesConfig) = 0; ++ virtual void unregisterCSSKeyframes( ++ jsi::Runtime &rt, ++ const jsi::Value &animationName, ++ const jsi::Value &viewName) = 0; ++ ++ // CSS animations ++ virtual void applyCSSAnimations( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &animationUpdates) = 0; ++ virtual void unregisterCSSAnimations(const jsi::Value &viewTag) = 0; ++ ++ // CSS transitions ++ virtual void registerCSSTransition( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &transitionConfig) = 0; ++ virtual void updateCSSTransition( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &configUpdates) = 0; ++ virtual void unregisterCSSTransition( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag) = 0; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/RNRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/RNRuntimeDecorator.h +new file mode 100644 +index 0000000..0d627de +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/RNRuntimeDecorator.h +@@ -0,0 +1,28 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++class RNRuntimeDecorator { ++ public: ++ static void decorate( ++ jsi::Runtime &rnRuntime, ++ jsi::Runtime &uiRuntime, ++ const std::shared_ptr &reanimatedModuleProxy); ++ ++#ifdef IS_REANIMATED_EXAMPLE_APP ++ private: ++ static void installDebugBindings( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &reanimatedModuleProxy); ++#endif // IS_REANIMATED_EXAMPLE_APP ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/UIRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/UIRuntimeDecorator.h +new file mode 100644 +index 0000000..d46d967 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/UIRuntimeDecorator.h +@@ -0,0 +1,26 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++class UIRuntimeDecorator { ++ public: ++ static void decorate( ++ jsi::Runtime &uiRuntime, ++ const ObtainPropFunction obtainPropFunction, ++ const UpdatePropsFunction updateProps, ++ const MeasureFunction measure, ++ const DispatchCommandFunction dispatchCommand, ++ const GetAnimationTimestampFunction getAnimationTimestamp, ++ const SetGestureStateFunction setGestureState, ++ const ProgressLayoutAnimationFunction progressLayoutAnimation, ++ const EndLayoutAnimationFunction endLayoutAnimation, ++ const MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueue); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/FeatureFlags.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/FeatureFlags.h +new file mode 100644 +index 0000000..b42d685 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/FeatureFlags.h +@@ -0,0 +1,44 @@ ++#pragma once ++#include ++#include ++ ++namespace reanimated { ++ ++class StaticFeatureFlags { ++ public: ++#ifdef REANIMATED_FEATURE_FLAGS ++ ++// Convert the value under x into a string ++#define XTOSTRING(x) #x ++// Evaluate the flag value; without this step, it would stringify the flag name ++// itself instead of the flag value ++#define TOSTRING(x) XTOSTRING(x) ++ ++ static constexpr bool getFlag(const std::string_view &name) { ++ std::string nameStr = name.data(); ++ std::string featureFlags = TOSTRING(REANIMATED_FEATURE_FLAGS); ++ if (featureFlags.find("[" + nameStr + ":") == std::string::npos) { ++ throw std::logic_error("Unable to recognize flag: " + nameStr); ++ } ++ return featureFlags.find("[" + nameStr + ":true]") != std::string::npos; ++ } ++ ++#else ++ ++ static constexpr bool getFlag(const std::string_view &) { ++ return false; ++ } ++ ++#endif ++}; ++ ++class DynamicFeatureFlags { ++ public: ++ static bool getFlag(const std::string &name); ++ static void setFlag(const std::string &name, bool value); ++ ++ private: ++ static std::unordered_map flags_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformDepMethodsHolder.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformDepMethodsHolder.h +new file mode 100644 +index 0000000..dbea4ba +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformDepMethodsHolder.h +@@ -0,0 +1,63 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++using UpdatePropsFunction = ++ std::function; ++using ObtainPropFunction = std::function; ++using DispatchCommandFunction = std::function; ++using MeasureFunction = std::function< ++ jsi::Value(jsi::Runtime &rt, const jsi::Value &shadowNodeValue)>; ++ ++using RequestRenderFunction = ++ std::function)>; ++using SynchronouslyUpdateUIPropsFunction = ++ std::function &, const std::vector &)>; ++using GetAnimationTimestampFunction = std::function; ++ ++using ProgressLayoutAnimationFunction = ++ std::function; ++using EndLayoutAnimationFunction = std::function; ++ ++using RegisterSensorFunction = ++ std::function)>; ++using UnregisterSensorFunction = std::function; ++using SetGestureStateFunction = std::function; ++using KeyboardEventSubscribeFunction = ++ std::function, bool, bool)>; ++using KeyboardEventUnsubscribeFunction = std::function; ++using MaybeFlushUIUpdatesQueueFunction = std::function; ++ ++struct PlatformDepMethodsHolder { ++ RequestRenderFunction requestRender; ++#ifdef ANDROID ++ SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction; ++#endif // ANDROID ++ GetAnimationTimestampFunction getAnimationTimestamp; ++ RegisterSensorFunction registerSensor; ++ UnregisterSensorFunction unregisterSensor; ++ SetGestureStateFunction setGestureStateFunction; ++ KeyboardEventSubscribeFunction subscribeForKeyboardEvents; ++ KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEvents; ++ MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueueFunction; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedSystraceSection.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedSystraceSection.h +new file mode 100644 +index 0000000..c3b17e9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedSystraceSection.h +@@ -0,0 +1,135 @@ ++#pragma once ++#include ++#include ++ ++#ifdef REANIMATED_PROFILING ++ ++#if defined(__APPLE__) ++#include ++ ++#if OS_LOG_TARGET_HAS_10_15_FEATURES ++#include ++#include ++#include ++#endif // OS_LOG_TARGET_HAS_10_15_FEATURES ++ ++#elif defined(ANDROID) ++ ++#include ++ ++#endif // defined(ANDROID) ++ ++#endif // REANIMATED_PROFILING ++ ++namespace reanimated { ++ ++#if defined(ANDROID) && defined(REANIMATED_PROFILING) ++ ++struct ReanimatedSystraceSection { ++ public: ++ template ++ explicit ReanimatedSystraceSection( ++ const char *name, ++ ConvertsToStringPiece &&...args) { ++ ATrace_beginSection(name); ++ } ++ ++ ~ReanimatedSystraceSection() { ++ ATrace_endSection(); ++ } ++}; ++ ++// The apple part is copied from React Native ++// from ++// https://github.com/facebook/react-native/blob/5697d923a05119314b4cfcd556cb243986637764/packages/react-native/ReactCommon/cxxreact/SystraceSection.h ++#elif defined(__APPLE__) && OS_LOG_TARGET_HAS_10_15_FEATURES && \ ++ defined(REANIMATED_PROFILING) ++ ++template ++struct renderer { ++ static std::string render(const T &t) { ++ std::ostringstream oss; ++ oss << t; ++ return oss.str(); ++ } ++}; ++ ++template ++static auto render(const T &t) ++ -> decltype(renderer::render(std::declval())) { ++ return renderer::render(t); ++} ++ ++inline os_log_t instrumentsLogHandle = nullptr; ++ ++static inline os_log_t getOrCreateInstrumentsLogHandle() { ++ if (!instrumentsLogHandle) { ++ instrumentsLogHandle = os_log_create( ++ "dev.reanimated.instruments", OS_LOG_CATEGORY_POINTS_OF_INTEREST); ++ } ++ return instrumentsLogHandle; ++} ++ ++struct ReanimatedSystraceSection { ++ public: ++ template ++ explicit ReanimatedSystraceSection( ++ const char *name, ++ ConvertsToStringPiece &&...args) { ++ os_log_t instrumentsLogHandle = ++ reanimated::getOrCreateInstrumentsLogHandle(); ++ ++ // If the log isn't enabled, we don't want the performance overhead of the ++ // rest of the code below. ++ if (!os_signpost_enabled(instrumentsLogHandle)) { ++ return; ++ } ++ ++ name_ = name; ++ ++ const auto argsVector = ++ std::vector{reanimated::render(args)...}; ++ std::string argsString = ""; ++ for (size_t i = 0; i < argsVector.size(); i += 2) { ++ argsString += argsVector[i] + "=" + argsVector[i + 1] + ";"; ++ } ++ ++ signpostID_ = os_signpost_id_make_with_pointer(instrumentsLogHandle, this); ++ ++ os_signpost_interval_begin( ++ instrumentsLogHandle, ++ signpostID_, ++ "Reanimated", ++ "%s begin: %s", ++ name, ++ argsString.c_str()); ++ } ++ ++ ~ReanimatedSystraceSection() { ++ os_signpost_interval_end( ++ reanimated::instrumentsLogHandle, ++ signpostID_, ++ "Reanimated", ++ "%s end", ++ name_.data()); ++ } ++ ++ private: ++ os_signpost_id_t signpostID_ = OS_SIGNPOST_ID_INVALID; ++ std::string_view name_; ++}; ++ ++#else ++ ++struct ReanimatedSystraceSection { ++ public: ++ template ++ explicit ReanimatedSystraceSection( ++ const char *name, ++ ConvertsToStringPiece &&...args) {} ++}; ++ ++#endif // defined(__APPLE__) && OS_LOG_TARGET_HAS_10_15_FEATURES && ++ // defined(REANIMATED_PROFILING) ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedVersion.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedVersion.h +new file mode 100644 +index 0000000..b490177 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedVersion.h +@@ -0,0 +1,20 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++std::string getReanimatedCppVersion(); ++void injectReanimatedCppVersion(jsi::Runtime &); ++void checkJSVersion( ++ jsi::Runtime &, ++ const std::shared_ptr &); ++ ++}; // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/AnimationFrameCallback.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/AnimationFrameCallback.h +new file mode 100644 +index 0000000..9da8b47 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/AnimationFrameCallback.h +@@ -0,0 +1,37 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class AnimationFrameCallback : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/AnimationFrameCallback;"; ++ ++ void onAnimationFrame(double timestampMs) { ++ callback_(timestampMs); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod( ++ "onAnimationFrame", AnimationFrameCallback::onAnimationFrame), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit AnimationFrameCallback(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/EventHandler.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/EventHandler.h +new file mode 100644 +index 0000000..af9080d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/EventHandler.h +@@ -0,0 +1,48 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class EventHandler : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/EventHandler;"; ++ ++ void receiveEvent( ++ jni::alias_ref eventKey, ++ jint emitterReactTag, ++ jni::alias_ref event) { ++ ReanimatedSystraceSection s("EventHandler::receiveEvent"); ++ handler_(eventKey, emitterReactTag, event); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("receiveEvent", EventHandler::receiveEvent), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit EventHandler(std::function, ++ jint emitterReactTag, ++ jni::alias_ref)> handler) ++ : handler_(std::move(handler)) {} ++ ++ std::function< ++ void(jni::alias_ref, jint, jni::alias_ref)> ++ handler_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/KeyboardWorkletWrapper.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/KeyboardWorkletWrapper.h +new file mode 100644 +index 0000000..72bbba5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/KeyboardWorkletWrapper.h +@@ -0,0 +1,36 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class KeyboardWorkletWrapper : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/keyboard/KeyboardWorkletWrapper;"; ++ ++ void invoke(int keyboardState, int height) { ++ callback_(keyboardState, height); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("invoke", KeyboardWorkletWrapper::invoke), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit KeyboardWorkletWrapper(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/NativeProxy.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/NativeProxy.h +new file mode 100644 +index 0000000..8a811e5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/NativeProxy.h +@@ -0,0 +1,120 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class NativeProxy : public jni::HybridClass, ++ std::enable_shared_from_this { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/NativeProxy;"; ++ static jni::local_ref initHybrid( ++ jni::alias_ref jThis, ++ jni::alias_ref jWorkletsModule, ++ jlong jsContext, ++ jni::alias_ref ++ jsCallInvokerHolder, ++ jni::alias_ref ++ fabricUIManager); ++ ++ static void registerNatives(); ++ ++ ~NativeProxy(); ++ ++ private: ++ friend HybridBase; ++ jni::global_ref javaPart_; ++ jsi::Runtime *rnRuntime_; ++ std::shared_ptr workletsModuleProxy_; ++ std::shared_ptr reanimatedModuleProxy_; ++#ifndef NDEBUG ++ void checkJavaVersion(); ++ void injectCppVersion(); ++#endif // NDEBUG ++ // removed temporarily, event listener mechanism needs to be fixed on RN side ++ // std::shared_ptr reactScheduler_; ++ // std::shared_ptr eventListener_; ++ void installJSIBindings(); ++ void synchronouslyUpdateUIProps( ++ const std::vector &intBuffer, ++ const std::vector &doubleBuffer); ++ PlatformDepMethodsHolder getPlatformDependentMethods(); ++ ++ double getAnimationTimestamp(); ++ bool isAnyHandlerWaitingForEvent( ++ const std::string &eventName, ++ const int emitterReactTag); ++ void performOperations(); ++ bool getIsReducedMotion(); ++ void requestRender(std::function onRender); ++ void registerEventHandler(); ++ void maybeFlushUIUpdatesQueue(); ++ void setGestureState(int handlerTag, int newState); ++ int registerSensor( ++ int sensorType, ++ int interval, ++ int iosReferenceFrame, ++ std::function setter); ++ void unregisterSensor(int sensorId); ++ int subscribeForKeyboardEvents( ++ std::function callback, ++ bool isStatusBarTranslucent, ++ bool isNavigationBarTranslucent); ++ void unsubscribeFromKeyboardEvents(int listenerId); ++ void handleEvent( ++ jni::alias_ref eventName, ++ jint emitterReactTag, ++ jni::alias_ref event); ++ ++ /*** ++ * Wraps a method of `NativeProxy` in a function object capturing `this` ++ * @tparam TReturn return type of passed method ++ * @tparam TParams parameter types of passed method ++ * @param methodPtr pointer to method to be wrapped ++ * @return a function object with the same signature as the method, calling ++ * that method on `this` ++ */ ++ template ++ std::function bindThis( ++ TReturn (NativeProxy::*methodPtr)(TParams...)) { ++ // It's probably safe to pass `this` as reference here... ++ return [this, methodPtr](TParams &&...args) { ++ return (this->*methodPtr)(std::forward(args)...); ++ }; ++ } ++ ++ template ++ JMethod getJniMethod(std::string const &methodName) { ++ return javaPart_->getClass()->getMethod(methodName.c_str()); ++ } ++ ++ explicit NativeProxy( ++ jni::alias_ref jThis, ++ const std::shared_ptr &workletsModuleProxy, ++ jsi::Runtime *rnRuntime, ++ const std::shared_ptr &jsCallInvoker, ++ jni::alias_ref ++ fabricUIManager); ++ ++ void invalidateCpp(); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/SensorSetter.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/SensorSetter.h +new file mode 100644 +index 0000000..a3fe548 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/SensorSetter.h +@@ -0,0 +1,42 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class SensorSetter : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/SensorSetter;"; ++ ++ void sensorSetter(jni::alias_ref value, int orientationDegrees) { ++ size_t size = value->size(); ++ auto elements = value->getRegion(0, size); ++ double array[7]; ++ for (size_t i = 0; i < size; i++) { ++ array[i] = elements[i]; ++ } ++ callback_(array, orientationDegrees); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("sensorSetter", SensorSetter::sensorSetter), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit SensorSetter(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-reanimated/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..ade1764 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ +diff --git a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp +index 5759f9f..01247a9 100644 +--- a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp ++++ b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp +@@ -131,10 +131,6 @@ void NativeProxy::performOperations() { + reanimatedModuleProxy_->performOperations(); + } + +-void NativeProxy::performNonLayoutOperations() { +- reanimatedModuleProxy_->performNonLayoutOperations(); +-} +- + bool NativeProxy::getIsReducedMotion() { + static const auto method = getJniMethod("getIsReducedMotion"); + return method(javaPart_.get()); +@@ -148,9 +144,6 @@ void NativeProxy::registerNatives() { + "isAnyHandlerWaitingForEvent", + NativeProxy::isAnyHandlerWaitingForEvent), + makeNativeMethod("performOperations", NativeProxy::performOperations), +- makeNativeMethod( +- "performNonLayoutOperations", +- NativeProxy::performNonLayoutOperations), + makeNativeMethod("invalidateCpp", NativeProxy::invalidateCpp)}); + } + +diff --git a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h +index 0d69661..8a811e5 100644 +--- a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h ++++ b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h +@@ -63,7 +63,6 @@ class NativeProxy : public jni::HybridClass, + const std::string &eventName, + const int emitterReactTag); + void performOperations(); +- void performNonLayoutOperations(); + bool getIsReducedMotion(); + void requestRender(std::function onRender); + void registerEventHandler(); +diff --git a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/DrawPassDetector.java b/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/DrawPassDetector.java +deleted file mode 100644 +index 0b9f285..0000000 +--- a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/DrawPassDetector.java ++++ /dev/null +@@ -1,82 +0,0 @@ +-package com.swmansion.reanimated; +- +-import android.app.Activity; +-import android.os.Handler; +-import android.os.Looper; +-import android.view.View; +-import android.view.ViewTreeObserver; +-import com.facebook.react.bridge.ReactApplicationContext; +-import com.facebook.react.bridge.UiThreadUtil; +-import javax.annotation.Nullable; +- +-/** Tracks whether the current UI thread turn is inside a draw pass. */ +-class DrawPassDetector { +- private final ReactApplicationContext mContext; +- private final Handler mHandler = new Handler(Looper.getMainLooper()); +- private final Runnable mClearRunnable = () -> mIsInDrawPass = false; +- private boolean mIsInDrawPass = false; +- @Nullable private View mDecorView = null; +- +- private final ViewTreeObserver.OnDrawListener mOnDrawListener = +- () -> { +- mIsInDrawPass = true; +- mHandler.postAtFrontOfQueue(mClearRunnable); +- }; +- +- DrawPassDetector(ReactApplicationContext context) { +- mContext = context; +- } +- +- void initialize() { +- Activity activity = mContext.getCurrentActivity(); +- if (activity == null) { +- return; +- } +- +- View decorView = activity.getWindow().getDecorView(); +- if (decorView == mDecorView) { +- return; +- } +- +- // Decor view has changed (e.g. Activity recreated) — detach from the old one first. +- if (mDecorView != null) { +- ViewTreeObserver oldObserver = mDecorView.getViewTreeObserver(); +- if (oldObserver.isAlive()) { +- oldObserver.removeOnDrawListener(mOnDrawListener); +- } +- mDecorView = null; +- } +- +- ViewTreeObserver observer = decorView.getViewTreeObserver(); +- if (!observer.isAlive()) { +- return; +- } +- +- mDecorView = decorView; +- observer.addOnDrawListener(mOnDrawListener); +- } +- +- boolean isInDrawPass() { +- return mIsInDrawPass; +- } +- +- void invalidate() { +- if (UiThreadUtil.isOnUiThread()) { +- invalidateOnUiThread(); +- } else { +- mHandler.post(this::invalidateOnUiThread); +- } +- } +- +- private void invalidateOnUiThread() { +- if (mDecorView != null) { +- ViewTreeObserver observer = mDecorView.getViewTreeObserver(); +- if (observer.isAlive()) { +- observer.removeOnDrawListener(mOnDrawListener); +- } +- mDecorView = null; +- } +- mHandler.removeCallbacks(mClearRunnable); +- mIsInDrawPass = false; +- } +-} +diff --git a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NativeProxy.java b/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NativeProxy.java +index cc12c5d..a02506c 100644 +--- a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NativeProxy.java ++++ b/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NativeProxy.java +@@ -112,8 +112,6 @@ public class NativeProxy { + + public native void performOperations(); + +- public native void performNonLayoutOperations(); +- + protected native void installJSIBindings(); + + private native void invalidateCpp(); +@@ -490,7 +488,7 @@ public class NativeProxy { + void maybeFlushUIUpdatesQueue() { + UiThreadUtil.assertOnUiThread(); + if (!mNodesManager.isAnimationRunning()) { +- mNodesManager.performOperationsRespectingDrawPass(); ++ mNodesManager.performOperations(); + } + } + } +diff --git a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java b/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java +index 1960228..a322746 100644 +--- a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java ++++ b/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java +@@ -44,7 +44,6 @@ public class NodesManager implements EventDispatcherListener { + private ConcurrentLinkedQueue mEventQueue = new ConcurrentLinkedQueue<>(); + private double lastFrameTimeMs; + private FabricUIManager mFabricUIManager; +- private final DrawPassDetector mDrawPassDetector; + + public NativeProxy getNativeProxy() { + return mNativeProxy; +@@ -58,8 +57,6 @@ public class NodesManager implements EventDispatcherListener { + mNativeProxy = null; + } + +- mDrawPassDetector.invalidate(); +- + if (mFabricUIManager != null) { + mFabricUIManager.getEventDispatcher().removeListener(this); + } +@@ -72,7 +69,6 @@ public class NodesManager implements EventDispatcherListener { + assert uiManager != null; + mCustomEventNamesResolver = uiManager::resolveCustomDirectEventName; + mEventEmitter = context.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class); +- mDrawPassDetector = new DrawPassDetector(context); + + mReactChoreographer = ReactChoreographer.getInstance(); + mChoreographerCallback = +@@ -126,28 +122,6 @@ public class NodesManager implements EventDispatcherListener { + } + } + +- void performNonLayoutOperations() { +- UiThreadUtil.assertOnUiThread(); +- if (mNativeProxy != null) { +- mNativeProxy.performNonLayoutOperations(); +- } +- } +- +- void performOperationsRespectingDrawPass() { +- mDrawPassDetector.initialize(); +- if (isInDrawPass()) { +- performNonLayoutOperations(); +- startUpdatingOnAnimationFrame(); +- return; +- } +- +- performOperations(); +- } +- +- boolean isInDrawPass() { +- return mDrawPassDetector.isInDrawPass(); +- } +- + private void onAnimationFrame(long frameTimeNanos) { + UiThreadUtil.assertOnUiThread(); + +@@ -156,8 +130,6 @@ public class NodesManager implements EventDispatcherListener { + Trace.beginSection("onAnimationFrame"); + } + +- mDrawPassDetector.initialize(); +- + double currentFrameTimeMs = frameTimeNanos / 1000000.; + if (mSlowAnimationsEnabled) { + currentFrameTimeMs = +@@ -217,7 +189,7 @@ public class NodesManager implements EventDispatcherListener { + // the UI thread. + if (UiThreadUtil.isOnUiThread()) { + handleEvent(event); +- performOperationsRespectingDrawPass(); ++ performOperations(); + } else { + String eventName = mCustomEventNamesResolver.resolveCustomEventName(event.getEventName()); + int viewTag = event.getViewTag(); +diff --git a/node_modules/react-native-reanimated/compatibility.json b/node_modules/react-native-reanimated/compatibility.json +index 06cc8a6..f1ba9cb 100644 +--- a/node_modules/react-native-reanimated/compatibility.json ++++ b/node_modules/react-native-reanimated/compatibility.json +@@ -5,7 +5,7 @@ + }, + "4.1.x": { + "react-native": ["0.78", "0.79", "0.80", "0.81", "0.82"], +- "react-native-worklets": ["0.5.x", "0.6.x", "0.7.x", "0.8.x"] ++ "react-native-worklets": ["0.5.x", "0.6.x", "0.7.x"] + }, + "4.0.x": { + "react-native": ["0.78", "0.79", "0.80", "0.81"], +diff --git a/node_modules/react-native-reanimated/lib/module/platform-specific/jsVersion.js b/node_modules/react-native-reanimated/lib/module/platform-specific/jsVersion.js +index 6441dcd..d75d62a 100644 +--- a/node_modules/react-native-reanimated/lib/module/platform-specific/jsVersion.js ++++ b/node_modules/react-native-reanimated/lib/module/platform-specific/jsVersion.js +@@ -5,5 +5,5 @@ + * version used to build the native part of the library in runtime. Remember to + * keep this in sync with the version declared in `package.json` + */ +-export const jsVersion = '4.1.7'; ++export const jsVersion = '4.1.6'; + //# sourceMappingURL=jsVersion.js.map +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/lib/typescript/platform-specific/jsVersion.d.ts b/node_modules/react-native-reanimated/lib/typescript/platform-specific/jsVersion.d.ts +index 5bb3d58..dcc4501 100644 +--- a/node_modules/react-native-reanimated/lib/typescript/platform-specific/jsVersion.d.ts ++++ b/node_modules/react-native-reanimated/lib/typescript/platform-specific/jsVersion.d.ts +@@ -3,5 +3,5 @@ + * version used to build the native part of the library in runtime. Remember to + * keep this in sync with the version declared in `package.json` + */ +-export declare const jsVersion = "4.1.7"; ++export declare const jsVersion = "4.1.6"; + //# sourceMappingURL=jsVersion.d.ts.map +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/scripts/worklets-version.json b/node_modules/react-native-reanimated/scripts/worklets-version.json +index 0b9c702..0c4da80 100644 +--- a/node_modules/react-native-reanimated/scripts/worklets-version.json ++++ b/node_modules/react-native-reanimated/scripts/worklets-version.json +@@ -1 +1,4 @@ +-{ "min": "0.5.0", "max": "0.8" } ++{ ++ "min": "0.4.0", ++ "max": "0.4" ++} +diff --git a/node_modules/react-native-reanimated/src/platform-specific/jsVersion.ts b/node_modules/react-native-reanimated/src/platform-specific/jsVersion.ts +index be0f607..0e57380 100644 +--- a/node_modules/react-native-reanimated/src/platform-specific/jsVersion.ts ++++ b/node_modules/react-native-reanimated/src/platform-specific/jsVersion.ts +@@ -4,4 +4,4 @@ + * version used to build the native part of the library in runtime. Remember to + * keep this in sync with the version declared in `package.json` + */ +-export const jsVersion = '4.1.7'; ++export const jsVersion = '4.1.6'; From 6347008780eb0ff463634b269c56b0d58226d65b Mon Sep 17 00:00:00 2001 From: James Pepper Date: Tue, 9 Jun 2026 19:22:34 +0100 Subject: [PATCH 02/10] Bump Node to 20.19.4; rename reanimated patch Update Node engine versions to 20.19.4 across eas.json (development, preview, production) and package.json to keep CI/local tooling consistent. Also rename the react-native-reanimated patch file from 4.1.6 to 4.1.7 to match the updated dependency versioning. --- eas.json | 6 +++--- package.json | 2 +- ...ated+4.1.6.patch => react-native-reanimated+4.1.7.patch} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename patches/{react-native-reanimated+4.1.6.patch => react-native-reanimated+4.1.7.patch} (100%) diff --git a/eas.json b/eas.json index 57ef7ab..0a435ce 100644 --- a/eas.json +++ b/eas.json @@ -7,7 +7,7 @@ "development": { "developmentClient": true, "distribution": "internal", - "node": "20.18.1", + "node": "20.19.4", "android": { "image": "ubuntu-22.04-jdk-17-ndk-r25b" }, @@ -18,7 +18,7 @@ }, "preview": { "distribution": "internal", - "node": "20.18.1", + "node": "20.19.4", "android": { "image": "ubuntu-22.04-jdk-17-ndk-r25b" }, @@ -29,7 +29,7 @@ }, "production": { "autoIncrement": true, - "node": "20.18.1", + "node": "20.19.4", "android": { "image": "ubuntu-22.04-jdk-17-ndk-r25b" }, diff --git a/package.json b/package.json index c39511d..fd981ce 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "license": "AGPL-3.0", "packageManager": "npm@10.2.4", "engines": { - "node": ">=20.18.0" + "node": ">=20.19.4" }, "scripts": { "start": "expo start", diff --git a/patches/react-native-reanimated+4.1.6.patch b/patches/react-native-reanimated+4.1.7.patch similarity index 100% rename from patches/react-native-reanimated+4.1.6.patch rename to patches/react-native-reanimated+4.1.7.patch From a1326c837233f020f2bdd5cc157a6acd889e8d8a Mon Sep 17 00:00:00 2001 From: James Pepper Date: Tue, 9 Jun 2026 20:06:01 +0100 Subject: [PATCH 03/10] Fix iOS EAS build: strip Android build artifacts from reanimated patch The react-native-reanimated patch accidentally included 578+ Android build cache files from android/.cxx/ (binary .ninja_deps, compiled objects, CMake caches with absolute local paths). These malformed binary patch entries caused git apply to fail on the EAS iOS macOS workers, killing npm install in ~2 min. Replace with a clean 939-line patch containing only the 4 necessary C++ source changes (UpdatesRegistry.cpp/h, ReanimatedModuleProxy.cpp/h). Also rename both patch files to match their actually-installed package versions (4.1.6, 23.8.4) to eliminate patch-package version mismatch warnings. Co-Authored-By: Claude Sonnet 4.6 --- ...-native-firebase+crashlytics+23.8.4.patch} | 0 patches/react-native-reanimated+4.1.6.patch | 939 + patches/react-native-reanimated+4.1.7.patch | 30794 ---------------- 3 files changed, 939 insertions(+), 30794 deletions(-) rename patches/{@react-native-firebase+crashlytics+23.8.6.patch => @react-native-firebase+crashlytics+23.8.4.patch} (100%) create mode 100644 patches/react-native-reanimated+4.1.6.patch delete mode 100644 patches/react-native-reanimated+4.1.7.patch diff --git a/patches/@react-native-firebase+crashlytics+23.8.6.patch b/patches/@react-native-firebase+crashlytics+23.8.4.patch similarity index 100% rename from patches/@react-native-firebase+crashlytics+23.8.6.patch rename to patches/@react-native-firebase+crashlytics+23.8.4.patch diff --git a/patches/react-native-reanimated+4.1.6.patch b/patches/react-native-reanimated+4.1.6.patch new file mode 100644 index 0000000..7147017 --- /dev/null +++ b/patches/react-native-reanimated+4.1.6.patch @@ -0,0 +1,939 @@ +diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp +index bd8d43a..ee43dd1 100644 +--- a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp ++++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp +@@ -32,18 +32,6 @@ void UpdatesRegistry::flushUpdates(UpdatesBatch &updatesBatch) { + } + } + +-UpdatesBatch UpdatesRegistry::getPendingUpdates() { +- auto lock = std::lock_guard{mutex_}; +- flushUpdatesToRegistry(updatesBatch_); +- +- UpdatesBatch updatesBatch; +- for (const auto &[tag, pair] : updatesRegistry_) { +- const auto &[shadowNode, props] = pair; +- updatesBatch.emplace_back(shadowNode, props); +- } +- return updatesBatch; +-} +- + void UpdatesRegistry::collectProps(PropsMap &propsMap) { + std::lock_guard lock{mutex_}; + +diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h +index db03aa5..6f32763 100644 +--- a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h ++++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h +@@ -49,7 +49,6 @@ class UpdatesRegistry { + + void flushUpdates(UpdatesBatch &updatesBatch); + void collectProps(PropsMap &propsMap); +- UpdatesBatch getPendingUpdates(); + + protected: + mutable std::mutex mutex_; +diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp +index 081fddf..05acd4f 100644 +--- a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp ++++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp +@@ -35,82 +35,6 @@ static inline std::shared_ptr shadowNodeFromValue( + } + #endif + +-namespace { +- +-#ifdef ANDROID +-constexpr bool shouldUseSynchronousUpdatesInPerformOperations() { +- return StaticFeatureFlags::getFlag("ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS"); +-} +-#else +-constexpr bool shouldUseSynchronousUpdatesInPerformOperations() { +- return false; +-} +-#endif +- +-std::pair partitionUpdates( +- const UpdatesBatch &updatesBatch, +- const std::unordered_set &synchronousPropNames, +- const bool shouldRequireIntegerColors = false, +- const bool allowPartialViews = false) { +- UpdatesBatch synchronousUpdatesBatch; +- UpdatesBatch shadowTreeUpdatesBatch; +- +- for (const auto &[shadowNode, props] : updatesBatch) { +- if (allowPartialViews) { +- folly::dynamic synchronousProps = folly::dynamic::object(); +- folly::dynamic shadowTreeProps = folly::dynamic::object(); +- +- for (const auto &[key, value] : props.items()) { +- const auto keyStr = key.asString(); +- const bool isColorProp = +- keyStr == "color" || keyStr.find("Color") != std::string::npos; +- const bool isSynchronous = synchronousPropNames.contains(keyStr) && +- (!shouldRequireIntegerColors || !isColorProp || value.isInt()); +- if (isSynchronous) { +- synchronousProps[keyStr] = value; +- } else { +- shadowTreeProps[keyStr] = value; +- } +- } +- +- if (!synchronousProps.empty()) { +- synchronousUpdatesBatch.emplace_back( +- shadowNode, std::move(synchronousProps)); +- } +- +- if (!shadowTreeProps.empty()) { +- shadowTreeUpdatesBatch.emplace_back( +- shadowNode, std::move(shadowTreeProps)); +- } +- } else { +- bool hasOnlySynchronousProps = true; +- +- for (const auto &[key, value] : props.items()) { +- const auto keyStr = key.asString(); +- const bool isColorProp = +- keyStr == "color" || keyStr.find("Color") != std::string::npos; +- const bool isSynchronous = synchronousPropNames.contains(keyStr) && +- (!shouldRequireIntegerColors || !isColorProp || value.isInt()); +- if (!isSynchronous) { +- hasOnlySynchronousProps = false; +- break; +- } +- } +- +- if (hasOnlySynchronousProps) { +- synchronousUpdatesBatch.emplace_back(shadowNode, props); +- } else { +- shadowTreeUpdatesBatch.emplace_back(shadowNode, props); +- } +- } +- } +- +- return { +- std::move(synchronousUpdatesBatch), std::move(shadowTreeUpdatesBatch)}; +-} +- +-} // namespace +- + ReanimatedModuleProxy::ReanimatedModuleProxy( + const std::shared_ptr &workletsModuleProxy, + jsi::Runtime &rnRuntime, +@@ -768,428 +692,434 @@ void ReanimatedModuleProxy::performOperations() { + + shouldUpdateCssAnimations_ = false; + +- if constexpr (shouldUseSynchronousUpdatesInPerformOperations()) { +- applySynchronousUpdates(updatesBatch); +- } +- +- if ((updatesBatch.size() > 0) && +- updatesRegistryManager_->shouldReanimatedSkipCommit()) { +- updatesRegistryManager_->pleaseCommitAfterPause(); +- } +- } +- +- if (updatesRegistryManager_->shouldReanimatedSkipCommit()) { +- // It may happen that `performOperations` is called on the UI thread +- // while React Native tries to commit a new tree on the JS thread. +- // In this case, we should skip the commit here and let React Native do +- // it. The commit will include the current values from the updates manager +- // which will be applied in ReanimatedCommitHook. +- return; +- } +- +- commitUpdates(rt, updatesBatch); +- +- // Clear the entire cache after the commit +- // (we don't know if the view is updated from outside of Reanimated +- // so we have to clear the entire cache) +- viewStylesRepository_->clearNodesCache(); +-} +- +-void ReanimatedModuleProxy::performNonLayoutOperations() { +- ReanimatedSystraceSection s( +- "ReanimatedModuleProxy::performNonLayoutOperations"); +- +- UpdatesBatch updatesBatch = animatedPropsRegistry_->getPendingUpdates(); +- +- applySynchronousUpdates(updatesBatch, true); +-} +- +-void ReanimatedModuleProxy::applySynchronousUpdates( +- UpdatesBatch &updatesBatch, +- const bool allowPartialUpdates) { + #ifdef ANDROID +- static const std::unordered_set synchronousProps = { +- "opacity", +- "elevation", +- "zIndex", +- // "shadowOpacity", // not supported on Android +- // "shadowRadius", // not supported on Android +- "backgroundColor", +- // "color", // TODO: fix animating color of Animated.Text, +- "tintColor", +- "borderRadius", +- "borderTopLeftRadius", +- "borderTopRightRadius", +- "borderTopStartRadius", +- "borderTopEndRadius", +- "borderBottomLeftRadius", +- "borderBottomRightRadius", +- "borderBottomStartRadius", +- "borderBottomEndRadius", +- "borderStartStartRadius", +- "borderStartEndRadius", +- "borderEndStartRadius", +- "borderEndEndRadius", +- "borderColor", +- "borderTopColor", +- "borderBottomColor", +- "borderLeftColor", +- "borderRightColor", +- "borderStartColor", +- "borderEndColor", +- "transform", +- }; +- +- // NOTE: Keep in sync with NativeProxy.java +- static constexpr auto CMD_START_OF_VIEW = 1; +- static constexpr auto CMD_START_OF_TRANSFORM = 2; +- static constexpr auto CMD_END_OF_TRANSFORM = 3; +- static constexpr auto CMD_END_OF_VIEW = 4; +- +- static constexpr auto CMD_OPACITY = 10; +- static constexpr auto CMD_ELEVATION = 11; +- static constexpr auto CMD_Z_INDEX = 12; +- static constexpr auto CMD_SHADOW_OPACITY = 13; +- static constexpr auto CMD_SHADOW_RADIUS = 14; +- static constexpr auto CMD_BACKGROUND_COLOR = 15; +- static constexpr auto CMD_COLOR = 16; +- static constexpr auto CMD_TINT_COLOR = 17; +- +- static constexpr auto CMD_BORDER_RADIUS = 20; +- static constexpr auto CMD_BORDER_TOP_LEFT_RADIUS = 21; +- static constexpr auto CMD_BORDER_TOP_RIGHT_RADIUS = 22; +- static constexpr auto CMD_BORDER_TOP_START_RADIUS = 23; +- static constexpr auto CMD_BORDER_TOP_END_RADIUS = 24; +- static constexpr auto CMD_BORDER_BOTTOM_LEFT_RADIUS = 25; +- static constexpr auto CMD_BORDER_BOTTOM_RIGHT_RADIUS = 26; +- static constexpr auto CMD_BORDER_BOTTOM_START_RADIUS = 27; +- static constexpr auto CMD_BORDER_BOTTOM_END_RADIUS = 28; +- static constexpr auto CMD_BORDER_START_START_RADIUS = 29; +- static constexpr auto CMD_BORDER_START_END_RADIUS = 30; +- static constexpr auto CMD_BORDER_END_START_RADIUS = 31; +- static constexpr auto CMD_BORDER_END_END_RADIUS = 32; +- +- static constexpr auto CMD_BORDER_COLOR = 40; +- static constexpr auto CMD_BORDER_TOP_COLOR = 41; +- static constexpr auto CMD_BORDER_BOTTOM_COLOR = 42; +- static constexpr auto CMD_BORDER_LEFT_COLOR = 43; +- static constexpr auto CMD_BORDER_RIGHT_COLOR = 44; +- static constexpr auto CMD_BORDER_START_COLOR = 45; +- static constexpr auto CMD_BORDER_END_COLOR = 46; +- +- static constexpr auto CMD_TRANSFORM_TRANSLATE_X = 100; +- static constexpr auto CMD_TRANSFORM_TRANSLATE_Y = 101; +- static constexpr auto CMD_TRANSFORM_SCALE = 102; +- static constexpr auto CMD_TRANSFORM_SCALE_X = 103; +- static constexpr auto CMD_TRANSFORM_SCALE_Y = 104; +- static constexpr auto CMD_TRANSFORM_ROTATE = 105; +- static constexpr auto CMD_TRANSFORM_ROTATE_X = 106; +- static constexpr auto CMD_TRANSFORM_ROTATE_Y = 107; +- static constexpr auto CMD_TRANSFORM_ROTATE_Z = 108; +- static constexpr auto CMD_TRANSFORM_SKEW_X = 109; +- static constexpr auto CMD_TRANSFORM_SKEW_Y = 110; +- static constexpr auto CMD_TRANSFORM_MATRIX = 111; +- static constexpr auto CMD_TRANSFORM_PERSPECTIVE = 112; ++ if constexpr (StaticFeatureFlags::getFlag( ++ "ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS")) { ++ static const std::unordered_set synchronousProps = { ++ "opacity", ++ "elevation", ++ "zIndex", ++ // "shadowOpacity", // not supported on Android ++ // "shadowRadius", // not supported on Android ++ "backgroundColor", ++ // "color", // TODO: fix animating color of Animated.Text ++ "tintColor", ++ "borderRadius", ++ "borderTopLeftRadius", ++ "borderTopRightRadius", ++ "borderTopStartRadius", ++ "borderTopEndRadius", ++ "borderBottomLeftRadius", ++ "borderBottomRightRadius", ++ "borderBottomStartRadius", ++ "borderBottomEndRadius", ++ "borderStartStartRadius", ++ "borderStartEndRadius", ++ "borderEndStartRadius", ++ "borderEndEndRadius", ++ "borderColor", ++ "borderTopColor", ++ "borderBottomColor", ++ "borderLeftColor", ++ "borderRightColor", ++ "borderStartColor", ++ "borderEndColor", ++ "transform", ++ }; + +- static constexpr auto CMD_UNIT_DEG = 200; +- static constexpr auto CMD_UNIT_RAD = 201; +- static constexpr auto CMD_UNIT_PX = 202; +- static constexpr auto CMD_UNIT_PERCENT = 203; ++ // NOTE: Keep in sync with NativeProxy.java ++ static constexpr auto CMD_START_OF_VIEW = 1; ++ static constexpr auto CMD_START_OF_TRANSFORM = 2; ++ static constexpr auto CMD_END_OF_TRANSFORM = 3; ++ static constexpr auto CMD_END_OF_VIEW = 4; ++ ++ static constexpr auto CMD_OPACITY = 10; ++ static constexpr auto CMD_ELEVATION = 11; ++ static constexpr auto CMD_Z_INDEX = 12; ++ static constexpr auto CMD_SHADOW_OPACITY = 13; ++ static constexpr auto CMD_SHADOW_RADIUS = 14; ++ static constexpr auto CMD_BACKGROUND_COLOR = 15; ++ static constexpr auto CMD_COLOR = 16; ++ static constexpr auto CMD_TINT_COLOR = 17; ++ ++ static constexpr auto CMD_BORDER_RADIUS = 20; ++ static constexpr auto CMD_BORDER_TOP_LEFT_RADIUS = 21; ++ static constexpr auto CMD_BORDER_TOP_RIGHT_RADIUS = 22; ++ static constexpr auto CMD_BORDER_TOP_START_RADIUS = 23; ++ static constexpr auto CMD_BORDER_TOP_END_RADIUS = 24; ++ static constexpr auto CMD_BORDER_BOTTOM_LEFT_RADIUS = 25; ++ static constexpr auto CMD_BORDER_BOTTOM_RIGHT_RADIUS = 26; ++ static constexpr auto CMD_BORDER_BOTTOM_START_RADIUS = 27; ++ static constexpr auto CMD_BORDER_BOTTOM_END_RADIUS = 28; ++ static constexpr auto CMD_BORDER_START_START_RADIUS = 29; ++ static constexpr auto CMD_BORDER_START_END_RADIUS = 30; ++ static constexpr auto CMD_BORDER_END_START_RADIUS = 31; ++ static constexpr auto CMD_BORDER_END_END_RADIUS = 32; ++ ++ static constexpr auto CMD_BORDER_COLOR = 40; ++ static constexpr auto CMD_BORDER_TOP_COLOR = 41; ++ static constexpr auto CMD_BORDER_BOTTOM_COLOR = 42; ++ static constexpr auto CMD_BORDER_LEFT_COLOR = 43; ++ static constexpr auto CMD_BORDER_RIGHT_COLOR = 44; ++ static constexpr auto CMD_BORDER_START_COLOR = 45; ++ static constexpr auto CMD_BORDER_END_COLOR = 46; ++ ++ static constexpr auto CMD_TRANSFORM_TRANSLATE_X = 100; ++ static constexpr auto CMD_TRANSFORM_TRANSLATE_Y = 101; ++ static constexpr auto CMD_TRANSFORM_SCALE = 102; ++ static constexpr auto CMD_TRANSFORM_SCALE_X = 103; ++ static constexpr auto CMD_TRANSFORM_SCALE_Y = 104; ++ static constexpr auto CMD_TRANSFORM_ROTATE = 105; ++ static constexpr auto CMD_TRANSFORM_ROTATE_X = 106; ++ static constexpr auto CMD_TRANSFORM_ROTATE_Y = 107; ++ static constexpr auto CMD_TRANSFORM_ROTATE_Z = 108; ++ static constexpr auto CMD_TRANSFORM_SKEW_X = 109; ++ static constexpr auto CMD_TRANSFORM_SKEW_Y = 110; ++ static constexpr auto CMD_TRANSFORM_MATRIX = 111; ++ static constexpr auto CMD_TRANSFORM_PERSPECTIVE = 112; + +- const auto propNameToCommand = [](const std::string &name) { +- if (name == "opacity") +- return CMD_OPACITY; ++ static constexpr auto CMD_UNIT_DEG = 200; ++ static constexpr auto CMD_UNIT_RAD = 201; ++ static constexpr auto CMD_UNIT_PX = 202; ++ static constexpr auto CMD_UNIT_PERCENT = 203; + +- if (name == "elevation") +- return CMD_ELEVATION; ++ const auto propNameToCommand = [](const std::string &name) { ++ if (name == "opacity") ++ return CMD_OPACITY; + +- if (name == "zIndex") +- return CMD_Z_INDEX; ++ if (name == "elevation") ++ return CMD_ELEVATION; + +- if (name == "shadowOpacity") +- return CMD_SHADOW_OPACITY; ++ if (name == "zIndex") ++ return CMD_Z_INDEX; + +- if (name == "shadowRadius") +- return CMD_SHADOW_RADIUS; ++ if (name == "shadowOpacity") ++ return CMD_SHADOW_OPACITY; + +- if (name == "backgroundColor") +- return CMD_BACKGROUND_COLOR; ++ if (name == "shadowRadius") ++ return CMD_SHADOW_RADIUS; + +- if (name == "color") +- return CMD_COLOR; ++ if (name == "backgroundColor") ++ return CMD_BACKGROUND_COLOR; + +- if (name == "tintColor") +- return CMD_TINT_COLOR; ++ if (name == "color") ++ return CMD_COLOR; + +- if (name == "borderRadius") +- return CMD_BORDER_RADIUS; ++ if (name == "tintColor") ++ return CMD_TINT_COLOR; + +- if (name == "borderTopLeftRadius") +- return CMD_BORDER_TOP_LEFT_RADIUS; ++ if (name == "borderRadius") ++ return CMD_BORDER_RADIUS; + +- if (name == "borderTopRightRadius") +- return CMD_BORDER_TOP_RIGHT_RADIUS; ++ if (name == "borderTopLeftRadius") ++ return CMD_BORDER_TOP_LEFT_RADIUS; + +- if (name == "borderTopStartRadius") +- return CMD_BORDER_TOP_START_RADIUS; ++ if (name == "borderTopRightRadius") ++ return CMD_BORDER_TOP_RIGHT_RADIUS; + +- if (name == "borderTopEndRadius") +- return CMD_BORDER_TOP_END_RADIUS; ++ if (name == "borderTopStartRadius") ++ return CMD_BORDER_TOP_START_RADIUS; + +- if (name == "borderBottomLeftRadius") +- return CMD_BORDER_BOTTOM_LEFT_RADIUS; ++ if (name == "borderTopEndRadius") ++ return CMD_BORDER_TOP_END_RADIUS; + +- if (name == "borderBottomRightRadius") +- return CMD_BORDER_BOTTOM_RIGHT_RADIUS; +- +- if (name == "borderBottomStartRadius") +- return CMD_BORDER_BOTTOM_START_RADIUS; ++ if (name == "borderBottomLeftRadius") ++ return CMD_BORDER_BOTTOM_LEFT_RADIUS; + +- if (name == "borderBottomEndRadius") +- return CMD_BORDER_BOTTOM_END_RADIUS; ++ if (name == "borderBottomRightRadius") ++ return CMD_BORDER_BOTTOM_RIGHT_RADIUS; ++ ++ if (name == "borderBottomStartRadius") ++ return CMD_BORDER_BOTTOM_START_RADIUS; + +- if (name == "borderStartStartRadius") +- return CMD_BORDER_START_START_RADIUS; ++ if (name == "borderBottomEndRadius") ++ return CMD_BORDER_BOTTOM_END_RADIUS; + +- if (name == "borderStartEndRadius") +- return CMD_BORDER_START_END_RADIUS; ++ if (name == "borderStartStartRadius") ++ return CMD_BORDER_START_START_RADIUS; + +- if (name == "borderEndStartRadius") +- return CMD_BORDER_END_START_RADIUS; ++ if (name == "borderStartEndRadius") ++ return CMD_BORDER_START_END_RADIUS; + +- if (name == "borderEndEndRadius") +- return CMD_BORDER_END_END_RADIUS; ++ if (name == "borderEndStartRadius") ++ return CMD_BORDER_END_START_RADIUS; + +- if (name == "borderColor") +- return CMD_BORDER_COLOR; ++ if (name == "borderEndEndRadius") ++ return CMD_BORDER_END_END_RADIUS; + +- if (name == "borderTopColor") +- return CMD_BORDER_TOP_COLOR; ++ if (name == "borderColor") ++ return CMD_BORDER_COLOR; + +- if (name == "borderBottomColor") +- return CMD_BORDER_BOTTOM_COLOR; ++ if (name == "borderTopColor") ++ return CMD_BORDER_TOP_COLOR; + +- if (name == "borderLeftColor") +- return CMD_BORDER_LEFT_COLOR; ++ if (name == "borderBottomColor") ++ return CMD_BORDER_BOTTOM_COLOR; + +- if (name == "borderRightColor") +- return CMD_BORDER_RIGHT_COLOR; ++ if (name == "borderLeftColor") ++ return CMD_BORDER_LEFT_COLOR; + +- if (name == "borderStartColor") +- return CMD_BORDER_START_COLOR; ++ if (name == "borderRightColor") ++ return CMD_BORDER_RIGHT_COLOR; + +- if (name == "borderEndColor") +- return CMD_BORDER_END_COLOR; ++ if (name == "borderStartColor") ++ return CMD_BORDER_START_COLOR; + +- if (name == "transform") +- return CMD_START_OF_TRANSFORM; // TODO: use CMD_TRANSFORM? ++ if (name == "borderEndColor") ++ return CMD_BORDER_END_COLOR; + +- throw std::runtime_error("[Reanimated] Unsupported style: " + name); +- }; ++ if (name == "transform") ++ return CMD_START_OF_TRANSFORM; // TODO: use CMD_TRANSFORM? + +- const auto transformNameToCommand = [](const std::string &name) { +- if (name == "translateX") +- return CMD_TRANSFORM_TRANSLATE_X; ++ throw std::runtime_error("[Reanimated] Unsupported style: " + name); ++ }; + +- if (name == "translateY") +- return CMD_TRANSFORM_TRANSLATE_Y; ++ const auto transformNameToCommand = [](const std::string &name) { ++ if (name == "translateX") ++ return CMD_TRANSFORM_TRANSLATE_X; + +- if (name == "scale") +- return CMD_TRANSFORM_SCALE; ++ if (name == "translateY") ++ return CMD_TRANSFORM_TRANSLATE_Y; + +- if (name == "scaleX") +- return CMD_TRANSFORM_SCALE_X; ++ if (name == "scale") ++ return CMD_TRANSFORM_SCALE; + +- if (name == "scaleY") +- return CMD_TRANSFORM_SCALE_Y; ++ if (name == "scaleX") ++ return CMD_TRANSFORM_SCALE_X; + +- if (name == "rotate") +- return CMD_TRANSFORM_ROTATE; ++ if (name == "scaleY") ++ return CMD_TRANSFORM_SCALE_Y; + +- if (name == "rotateX") +- return CMD_TRANSFORM_ROTATE_X; ++ if (name == "rotate") ++ return CMD_TRANSFORM_ROTATE; + +- if (name == "rotateY") +- return CMD_TRANSFORM_ROTATE_Y; ++ if (name == "rotateX") ++ return CMD_TRANSFORM_ROTATE_X; + +- if (name == "rotateZ") +- return CMD_TRANSFORM_ROTATE_Z; ++ if (name == "rotateY") ++ return CMD_TRANSFORM_ROTATE_Y; + +- if (name == "skewX") +- return CMD_TRANSFORM_SKEW_X; ++ if (name == "rotateZ") ++ return CMD_TRANSFORM_ROTATE_Z; + +- if (name == "skewY") +- return CMD_TRANSFORM_SKEW_Y; ++ if (name == "skewX") ++ return CMD_TRANSFORM_SKEW_X; + +- if (name == "matrix") +- return CMD_TRANSFORM_MATRIX; ++ if (name == "skewY") ++ return CMD_TRANSFORM_SKEW_Y; + +- if (name == "perspective") +- return CMD_TRANSFORM_PERSPECTIVE; ++ if (name == "matrix") ++ return CMD_TRANSFORM_MATRIX; + +- throw std::runtime_error("[Reanimated] Unsupported transform: " + name); +- }; ++ if (name == "perspective") ++ return CMD_TRANSFORM_PERSPECTIVE; + +- auto [synchronousUpdatesBatch, shadowTreeUpdatesBatch] = partitionUpdates( +- updatesBatch, synchronousProps, true, allowPartialUpdates); +- +- if (!synchronousUpdatesBatch.empty()) { +- std::vector intBuffer; +- std::vector doubleBuffer; +- intBuffer.reserve(1024); +- doubleBuffer.reserve(1024); +- +- for (const auto &[shadowNode, props] : synchronousUpdatesBatch) { +- intBuffer.push_back(CMD_START_OF_VIEW); +- intBuffer.push_back(shadowNode->getTag()); +- for (const auto &[key, value] : props.items()) { +- const auto command = propNameToCommand(key.getString()); +- switch (command) { +- case CMD_OPACITY: +- case CMD_ELEVATION: +- case CMD_Z_INDEX: +- case CMD_SHADOW_OPACITY: +- case CMD_SHADOW_RADIUS: +- intBuffer.push_back(command); +- doubleBuffer.push_back(value.asDouble()); +- break; ++ throw std::runtime_error("[Reanimated] Unsupported transform: " + name); ++ }; + +- case CMD_BACKGROUND_COLOR: +- case CMD_COLOR: +- case CMD_TINT_COLOR: +- case CMD_BORDER_COLOR: +- case CMD_BORDER_TOP_COLOR: +- case CMD_BORDER_BOTTOM_COLOR: +- case CMD_BORDER_LEFT_COLOR: +- case CMD_BORDER_RIGHT_COLOR: +- case CMD_BORDER_START_COLOR: +- case CMD_BORDER_END_COLOR: +- intBuffer.push_back(command); +- intBuffer.push_back(value.asInt()); +- break; ++ UpdatesBatch synchronousUpdatesBatch, shadowTreeUpdatesBatch; + +- case CMD_BORDER_RADIUS: +- case CMD_BORDER_TOP_LEFT_RADIUS: +- case CMD_BORDER_TOP_RIGHT_RADIUS: +- case CMD_BORDER_TOP_START_RADIUS: +- case CMD_BORDER_TOP_END_RADIUS: +- case CMD_BORDER_BOTTOM_LEFT_RADIUS: +- case CMD_BORDER_BOTTOM_RIGHT_RADIUS: +- case CMD_BORDER_BOTTOM_START_RADIUS: +- case CMD_BORDER_BOTTOM_END_RADIUS: +- case CMD_BORDER_START_START_RADIUS: +- case CMD_BORDER_START_END_RADIUS: +- case CMD_BORDER_END_START_RADIUS: +- case CMD_BORDER_END_END_RADIUS: +- intBuffer.push_back(command); +- if (value.isDouble()) { +- intBuffer.push_back(CMD_UNIT_PX); +- doubleBuffer.push_back(value.getDouble()); +- } else if (value.isString()) { +- const auto &valueStr = value.getString(); +- if (!valueStr.ends_with("%")) { +- throw std::runtime_error( +- "[Reanimated] Border radius string must be a percentage"); +- } +- intBuffer.push_back(CMD_UNIT_PERCENT); +- doubleBuffer.push_back(std::stof(valueStr.substr(0, -1))); +- } else { +- throw std::runtime_error( +- "[Reanimated] Border radius value must be either a number or a string"); +- } ++ for (const auto &[shadowNode, props] : updatesBatch) { ++ bool hasOnlySynchronousProps = true; ++ for (const auto &key : props.keys()) { ++ const auto keyStr = key.asString(); ++ if (!synchronousProps.contains(keyStr)) { ++ hasOnlySynchronousProps = false; + break; ++ } ++ } ++ if (hasOnlySynchronousProps) { ++ synchronousUpdatesBatch.emplace_back(shadowNode, props); ++ } else { ++ shadowTreeUpdatesBatch.emplace_back(shadowNode, props); ++ } ++ } + +- case CMD_START_OF_TRANSFORM: +- intBuffer.push_back(command); +- react_native_assert( +- value.isArray() && +- "[Reanimated] Transform value must be an array"); +- for (const auto &item : value) { +- react_native_assert( +- item.isObject() && +- "[Reanimated] Transform array item must be an object"); +- react_native_assert( +- item.size() == 1 && +- "[Reanimated] Transform array item must have exactly one key-value pair"); +- const auto transformCommand = +- transformNameToCommand(item.keys().begin()->getString()); +- const auto &transformValue = *item.values().begin(); +- switch (transformCommand) { +- case CMD_TRANSFORM_SCALE: +- case CMD_TRANSFORM_SCALE_X: +- case CMD_TRANSFORM_SCALE_Y: +- case CMD_TRANSFORM_PERSPECTIVE: { +- intBuffer.push_back(transformCommand); +- doubleBuffer.push_back(transformValue.asDouble()); +- break; +- } +- case CMD_TRANSFORM_TRANSLATE_X: +- case CMD_TRANSFORM_TRANSLATE_Y: { +- intBuffer.push_back(transformCommand); +- if (transformValue.isDouble()) { +- intBuffer.push_back(CMD_UNIT_PX); +- doubleBuffer.push_back(transformValue.getDouble()); +- } else if (transformValue.isString()) { +- const auto &transformValueStr = transformValue.getString(); +- if (!transformValueStr.ends_with("%")) { +- throw std::runtime_error( +- "[Reanimated] String translate must be a percentage"); +- } +- intBuffer.push_back(CMD_UNIT_PERCENT); +- doubleBuffer.push_back( +- std::stof(transformValueStr.substr(0, -1))); +- } else { ++ if (!synchronousUpdatesBatch.empty()) { ++ std::vector intBuffer; ++ std::vector doubleBuffer; ++ intBuffer.reserve(1024); ++ doubleBuffer.reserve(1024); ++ ++ for (const auto &[shadowNode, props] : synchronousUpdatesBatch) { ++ intBuffer.push_back(CMD_START_OF_VIEW); ++ intBuffer.push_back(shadowNode->getTag()); ++ for (const auto &[key, value] : props.items()) { ++ const auto command = propNameToCommand(key.getString()); ++ switch (command) { ++ case CMD_OPACITY: ++ case CMD_ELEVATION: ++ case CMD_Z_INDEX: ++ case CMD_SHADOW_OPACITY: ++ case CMD_SHADOW_RADIUS: ++ intBuffer.push_back(command); ++ doubleBuffer.push_back(value.asDouble()); ++ break; ++ ++ case CMD_BACKGROUND_COLOR: ++ case CMD_COLOR: ++ case CMD_TINT_COLOR: ++ case CMD_BORDER_COLOR: ++ case CMD_BORDER_TOP_COLOR: ++ case CMD_BORDER_BOTTOM_COLOR: ++ case CMD_BORDER_LEFT_COLOR: ++ case CMD_BORDER_RIGHT_COLOR: ++ case CMD_BORDER_START_COLOR: ++ case CMD_BORDER_END_COLOR: ++ intBuffer.push_back(command); ++ intBuffer.push_back(value.asInt()); ++ break; ++ ++ case CMD_BORDER_RADIUS: ++ case CMD_BORDER_TOP_LEFT_RADIUS: ++ case CMD_BORDER_TOP_RIGHT_RADIUS: ++ case CMD_BORDER_TOP_START_RADIUS: ++ case CMD_BORDER_TOP_END_RADIUS: ++ case CMD_BORDER_BOTTOM_LEFT_RADIUS: ++ case CMD_BORDER_BOTTOM_RIGHT_RADIUS: ++ case CMD_BORDER_BOTTOM_START_RADIUS: ++ case CMD_BORDER_BOTTOM_END_RADIUS: ++ case CMD_BORDER_START_START_RADIUS: ++ case CMD_BORDER_START_END_RADIUS: ++ case CMD_BORDER_END_START_RADIUS: ++ case CMD_BORDER_END_END_RADIUS: ++ intBuffer.push_back(command); ++ if (value.isDouble()) { ++ intBuffer.push_back(CMD_UNIT_PX); ++ doubleBuffer.push_back(value.getDouble()); ++ } else if (value.isString()) { ++ const auto &valueStr = value.getString(); ++ if (!valueStr.ends_with("%")) { + throw std::runtime_error( +- "[Reanimated] Translate value must be either a number or a string"); ++ "[Reanimated] Border radius string must be a percentage"); + } +- break; ++ intBuffer.push_back(CMD_UNIT_PERCENT); ++ doubleBuffer.push_back(std::stof(valueStr.substr(0, -1))); ++ } else { ++ throw std::runtime_error( ++ "[Reanimated] Border radius value must be either a number or a string"); + } +- case CMD_TRANSFORM_ROTATE: +- case CMD_TRANSFORM_ROTATE_X: +- case CMD_TRANSFORM_ROTATE_Y: +- case CMD_TRANSFORM_ROTATE_Z: +- case CMD_TRANSFORM_SKEW_X: +- case CMD_TRANSFORM_SKEW_Y: { +- const auto &transformValueStr = transformValue.getString(); +- intBuffer.push_back(transformCommand); +- if (transformValueStr.ends_with("deg")) { +- intBuffer.push_back(CMD_UNIT_DEG); +- } else if (transformValueStr.ends_with("rad")) { +- intBuffer.push_back(CMD_UNIT_RAD); +- } else { +- throw std::runtime_error( +- "[Reanimated] Unsupported rotation unit: " + +- transformValueStr); +- } +- doubleBuffer.push_back( +- std::stof(transformValueStr.substr(0, -3))); +- break; +- } +- case CMD_TRANSFORM_MATRIX: { +- intBuffer.push_back(transformCommand); ++ break; ++ ++ case CMD_START_OF_TRANSFORM: ++ intBuffer.push_back(command); ++ react_native_assert( ++ value.isArray() && ++ "[Reanimated] Transform value must be an array"); ++ for (const auto &item : value) { ++ react_native_assert( ++ item.isObject() && ++ "[Reanimated] Transform array item must be an object"); + react_native_assert( +- transformValue.isArray() && +- "[Reanimated] Matrix must be an array"); +- int size = transformValue.size(); +- intBuffer.push_back(size); +- for (int i = 0; i < size; i++) { +- doubleBuffer.push_back(transformValue[i].asDouble()); ++ item.size() == 1 && ++ "[Reanimated] Transform array item must have exactly one key-value pair"); ++ const auto transformCommand = ++ transformNameToCommand(item.keys().begin()->getString()); ++ const auto &transformValue = *item.values().begin(); ++ switch (transformCommand) { ++ case CMD_TRANSFORM_SCALE: ++ case CMD_TRANSFORM_SCALE_X: ++ case CMD_TRANSFORM_SCALE_Y: ++ case CMD_TRANSFORM_PERSPECTIVE: { ++ intBuffer.push_back(transformCommand); ++ doubleBuffer.push_back(transformValue.asDouble()); ++ break; ++ } ++ ++ case CMD_TRANSFORM_TRANSLATE_X: ++ case CMD_TRANSFORM_TRANSLATE_Y: { ++ intBuffer.push_back(transformCommand); ++ if (transformValue.isDouble()) { ++ intBuffer.push_back(CMD_UNIT_PX); ++ doubleBuffer.push_back(transformValue.getDouble()); ++ } else if (transformValue.isString()) { ++ const auto &transformValueStr = ++ transformValue.getString(); ++ if (!transformValueStr.ends_with("%")) { ++ throw std::runtime_error( ++ "[Reanimated] String translate must be a percentage"); ++ } ++ intBuffer.push_back(CMD_UNIT_PERCENT); ++ doubleBuffer.push_back( ++ std::stof(transformValueStr.substr(0, -1))); ++ } else { ++ throw std::runtime_error( ++ "[Reanimated] Translate value must be either a number or a string"); ++ } ++ break; ++ } ++ ++ case CMD_TRANSFORM_ROTATE: ++ case CMD_TRANSFORM_ROTATE_X: ++ case CMD_TRANSFORM_ROTATE_Y: ++ case CMD_TRANSFORM_ROTATE_Z: ++ case CMD_TRANSFORM_SKEW_X: ++ case CMD_TRANSFORM_SKEW_Y: { ++ const auto &transformValueStr = ++ transformValue.getString(); ++ intBuffer.push_back(transformCommand); ++ if (transformValueStr.ends_with("deg")) { ++ intBuffer.push_back(CMD_UNIT_DEG); ++ } else if (transformValueStr.ends_with("rad")) { ++ intBuffer.push_back(CMD_UNIT_RAD); ++ } else { ++ throw std::runtime_error( ++ "[Reanimated] Unsupported rotation unit: " + ++ transformValueStr); ++ } ++ doubleBuffer.push_back( ++ std::stof(transformValueStr.substr(0, -3))); ++ break; ++ } ++ ++ case CMD_TRANSFORM_MATRIX: { ++ intBuffer.push_back(transformCommand); ++ react_native_assert( ++ transformValue.isArray() && ++ "[Reanimated] Matrix must be an array"); ++ int size = transformValue.size(); ++ intBuffer.push_back(size); ++ for (int i = 0; i < size; i++) { ++ doubleBuffer.push_back(transformValue[i].asDouble()); ++ } ++ break; ++ } + } +- break; + } +- } ++ intBuffer.push_back(CMD_END_OF_TRANSFORM); ++ break; + } +- intBuffer.push_back(CMD_END_OF_TRANSFORM); +- break; ++ } ++ intBuffer.push_back(CMD_END_OF_VIEW); + } ++ synchronouslyUpdateUIPropsFunction_(intBuffer, doubleBuffer); + } +- intBuffer.push_back(CMD_END_OF_VIEW); ++ ++ updatesBatch = std::move(shadowTreeUpdatesBatch); ++ } ++#endif // ANDROID ++ ++ if ((updatesBatch.size() > 0) && ++ updatesRegistryManager_->shouldReanimatedSkipCommit()) { ++ updatesRegistryManager_->pleaseCommitAfterPause(); + } +- synchronouslyUpdateUIPropsFunction_(intBuffer, doubleBuffer); + } + +- updatesBatch = std::move(shadowTreeUpdatesBatch); +-#endif // ANDROID ++ if (updatesRegistryManager_->shouldReanimatedSkipCommit()) { ++ // It may happen that `performOperations` is called on the UI thread ++ // while React Native tries to commit a new tree on the JS thread. ++ // In this case, we should skip the commit here and let React Native do ++ // it. The commit will include the current values from the updates manager ++ // which will be applied in ReanimatedCommitHook. ++ return; ++ } ++ ++ commitUpdates(rt, updatesBatch); ++ ++ // Clear the entire cache after the commit ++ // (we don't know if the view is updated from outside of Reanimated ++ // so we have to clear the entire cache) ++ viewStylesRepository_->clearNodesCache(); + } + + void ReanimatedModuleProxy::requestFlushRegistry() { +diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h +index 4d86766..9e0599a 100644 +--- a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h ++++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h +@@ -118,7 +118,6 @@ class ReanimatedModuleProxy + double getCssTimestamp(); + + void performOperations(); +- void performNonLayoutOperations(); + + void setViewStyle( + jsi::Runtime &rt, +@@ -219,9 +218,6 @@ class ReanimatedModuleProxy + + private: + void commitUpdates(jsi::Runtime &rt, const UpdatesBatch &updatesBatch); +- void applySynchronousUpdates( +- UpdatesBatch &updatesBatch, +- bool allowPartialUpdates = false); + + const bool isReducedMotion_; + bool shouldFlushRegistry_ = false; diff --git a/patches/react-native-reanimated+4.1.7.patch b/patches/react-native-reanimated+4.1.7.patch deleted file mode 100644 index a2b85b9..0000000 --- a/patches/react-native-reanimated+4.1.7.patch +++ /dev/null @@ -1,30794 +0,0 @@ -diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp -index bd8d43a..ee43dd1 100644 ---- a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp -+++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp -@@ -32,18 +32,6 @@ void UpdatesRegistry::flushUpdates(UpdatesBatch &updatesBatch) { - } - } - --UpdatesBatch UpdatesRegistry::getPendingUpdates() { -- auto lock = std::lock_guard{mutex_}; -- flushUpdatesToRegistry(updatesBatch_); -- -- UpdatesBatch updatesBatch; -- for (const auto &[tag, pair] : updatesRegistry_) { -- const auto &[shadowNode, props] = pair; -- updatesBatch.emplace_back(shadowNode, props); -- } -- return updatesBatch; --} -- - void UpdatesRegistry::collectProps(PropsMap &propsMap) { - std::lock_guard lock{mutex_}; - -diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h -index db03aa5..6f32763 100644 ---- a/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h -+++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.h -@@ -49,7 +49,6 @@ class UpdatesRegistry { - - void flushUpdates(UpdatesBatch &updatesBatch); - void collectProps(PropsMap &propsMap); -- UpdatesBatch getPendingUpdates(); - - protected: - mutable std::mutex mutex_; -diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp -index 081fddf..05acd4f 100644 ---- a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp -+++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp -@@ -35,82 +35,6 @@ static inline std::shared_ptr shadowNodeFromValue( - } - #endif - --namespace { -- --#ifdef ANDROID --constexpr bool shouldUseSynchronousUpdatesInPerformOperations() { -- return StaticFeatureFlags::getFlag("ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS"); --} --#else --constexpr bool shouldUseSynchronousUpdatesInPerformOperations() { -- return false; --} --#endif -- --std::pair partitionUpdates( -- const UpdatesBatch &updatesBatch, -- const std::unordered_set &synchronousPropNames, -- const bool shouldRequireIntegerColors = false, -- const bool allowPartialViews = false) { -- UpdatesBatch synchronousUpdatesBatch; -- UpdatesBatch shadowTreeUpdatesBatch; -- -- for (const auto &[shadowNode, props] : updatesBatch) { -- if (allowPartialViews) { -- folly::dynamic synchronousProps = folly::dynamic::object(); -- folly::dynamic shadowTreeProps = folly::dynamic::object(); -- -- for (const auto &[key, value] : props.items()) { -- const auto keyStr = key.asString(); -- const bool isColorProp = -- keyStr == "color" || keyStr.find("Color") != std::string::npos; -- const bool isSynchronous = synchronousPropNames.contains(keyStr) && -- (!shouldRequireIntegerColors || !isColorProp || value.isInt()); -- if (isSynchronous) { -- synchronousProps[keyStr] = value; -- } else { -- shadowTreeProps[keyStr] = value; -- } -- } -- -- if (!synchronousProps.empty()) { -- synchronousUpdatesBatch.emplace_back( -- shadowNode, std::move(synchronousProps)); -- } -- -- if (!shadowTreeProps.empty()) { -- shadowTreeUpdatesBatch.emplace_back( -- shadowNode, std::move(shadowTreeProps)); -- } -- } else { -- bool hasOnlySynchronousProps = true; -- -- for (const auto &[key, value] : props.items()) { -- const auto keyStr = key.asString(); -- const bool isColorProp = -- keyStr == "color" || keyStr.find("Color") != std::string::npos; -- const bool isSynchronous = synchronousPropNames.contains(keyStr) && -- (!shouldRequireIntegerColors || !isColorProp || value.isInt()); -- if (!isSynchronous) { -- hasOnlySynchronousProps = false; -- break; -- } -- } -- -- if (hasOnlySynchronousProps) { -- synchronousUpdatesBatch.emplace_back(shadowNode, props); -- } else { -- shadowTreeUpdatesBatch.emplace_back(shadowNode, props); -- } -- } -- } -- -- return { -- std::move(synchronousUpdatesBatch), std::move(shadowTreeUpdatesBatch)}; --} -- --} // namespace -- - ReanimatedModuleProxy::ReanimatedModuleProxy( - const std::shared_ptr &workletsModuleProxy, - jsi::Runtime &rnRuntime, -@@ -768,428 +692,434 @@ void ReanimatedModuleProxy::performOperations() { - - shouldUpdateCssAnimations_ = false; - -- if constexpr (shouldUseSynchronousUpdatesInPerformOperations()) { -- applySynchronousUpdates(updatesBatch); -- } -- -- if ((updatesBatch.size() > 0) && -- updatesRegistryManager_->shouldReanimatedSkipCommit()) { -- updatesRegistryManager_->pleaseCommitAfterPause(); -- } -- } -- -- if (updatesRegistryManager_->shouldReanimatedSkipCommit()) { -- // It may happen that `performOperations` is called on the UI thread -- // while React Native tries to commit a new tree on the JS thread. -- // In this case, we should skip the commit here and let React Native do -- // it. The commit will include the current values from the updates manager -- // which will be applied in ReanimatedCommitHook. -- return; -- } -- -- commitUpdates(rt, updatesBatch); -- -- // Clear the entire cache after the commit -- // (we don't know if the view is updated from outside of Reanimated -- // so we have to clear the entire cache) -- viewStylesRepository_->clearNodesCache(); --} -- --void ReanimatedModuleProxy::performNonLayoutOperations() { -- ReanimatedSystraceSection s( -- "ReanimatedModuleProxy::performNonLayoutOperations"); -- -- UpdatesBatch updatesBatch = animatedPropsRegistry_->getPendingUpdates(); -- -- applySynchronousUpdates(updatesBatch, true); --} -- --void ReanimatedModuleProxy::applySynchronousUpdates( -- UpdatesBatch &updatesBatch, -- const bool allowPartialUpdates) { - #ifdef ANDROID -- static const std::unordered_set synchronousProps = { -- "opacity", -- "elevation", -- "zIndex", -- // "shadowOpacity", // not supported on Android -- // "shadowRadius", // not supported on Android -- "backgroundColor", -- // "color", // TODO: fix animating color of Animated.Text, -- "tintColor", -- "borderRadius", -- "borderTopLeftRadius", -- "borderTopRightRadius", -- "borderTopStartRadius", -- "borderTopEndRadius", -- "borderBottomLeftRadius", -- "borderBottomRightRadius", -- "borderBottomStartRadius", -- "borderBottomEndRadius", -- "borderStartStartRadius", -- "borderStartEndRadius", -- "borderEndStartRadius", -- "borderEndEndRadius", -- "borderColor", -- "borderTopColor", -- "borderBottomColor", -- "borderLeftColor", -- "borderRightColor", -- "borderStartColor", -- "borderEndColor", -- "transform", -- }; -- -- // NOTE: Keep in sync with NativeProxy.java -- static constexpr auto CMD_START_OF_VIEW = 1; -- static constexpr auto CMD_START_OF_TRANSFORM = 2; -- static constexpr auto CMD_END_OF_TRANSFORM = 3; -- static constexpr auto CMD_END_OF_VIEW = 4; -- -- static constexpr auto CMD_OPACITY = 10; -- static constexpr auto CMD_ELEVATION = 11; -- static constexpr auto CMD_Z_INDEX = 12; -- static constexpr auto CMD_SHADOW_OPACITY = 13; -- static constexpr auto CMD_SHADOW_RADIUS = 14; -- static constexpr auto CMD_BACKGROUND_COLOR = 15; -- static constexpr auto CMD_COLOR = 16; -- static constexpr auto CMD_TINT_COLOR = 17; -- -- static constexpr auto CMD_BORDER_RADIUS = 20; -- static constexpr auto CMD_BORDER_TOP_LEFT_RADIUS = 21; -- static constexpr auto CMD_BORDER_TOP_RIGHT_RADIUS = 22; -- static constexpr auto CMD_BORDER_TOP_START_RADIUS = 23; -- static constexpr auto CMD_BORDER_TOP_END_RADIUS = 24; -- static constexpr auto CMD_BORDER_BOTTOM_LEFT_RADIUS = 25; -- static constexpr auto CMD_BORDER_BOTTOM_RIGHT_RADIUS = 26; -- static constexpr auto CMD_BORDER_BOTTOM_START_RADIUS = 27; -- static constexpr auto CMD_BORDER_BOTTOM_END_RADIUS = 28; -- static constexpr auto CMD_BORDER_START_START_RADIUS = 29; -- static constexpr auto CMD_BORDER_START_END_RADIUS = 30; -- static constexpr auto CMD_BORDER_END_START_RADIUS = 31; -- static constexpr auto CMD_BORDER_END_END_RADIUS = 32; -- -- static constexpr auto CMD_BORDER_COLOR = 40; -- static constexpr auto CMD_BORDER_TOP_COLOR = 41; -- static constexpr auto CMD_BORDER_BOTTOM_COLOR = 42; -- static constexpr auto CMD_BORDER_LEFT_COLOR = 43; -- static constexpr auto CMD_BORDER_RIGHT_COLOR = 44; -- static constexpr auto CMD_BORDER_START_COLOR = 45; -- static constexpr auto CMD_BORDER_END_COLOR = 46; -- -- static constexpr auto CMD_TRANSFORM_TRANSLATE_X = 100; -- static constexpr auto CMD_TRANSFORM_TRANSLATE_Y = 101; -- static constexpr auto CMD_TRANSFORM_SCALE = 102; -- static constexpr auto CMD_TRANSFORM_SCALE_X = 103; -- static constexpr auto CMD_TRANSFORM_SCALE_Y = 104; -- static constexpr auto CMD_TRANSFORM_ROTATE = 105; -- static constexpr auto CMD_TRANSFORM_ROTATE_X = 106; -- static constexpr auto CMD_TRANSFORM_ROTATE_Y = 107; -- static constexpr auto CMD_TRANSFORM_ROTATE_Z = 108; -- static constexpr auto CMD_TRANSFORM_SKEW_X = 109; -- static constexpr auto CMD_TRANSFORM_SKEW_Y = 110; -- static constexpr auto CMD_TRANSFORM_MATRIX = 111; -- static constexpr auto CMD_TRANSFORM_PERSPECTIVE = 112; -+ if constexpr (StaticFeatureFlags::getFlag( -+ "ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS")) { -+ static const std::unordered_set synchronousProps = { -+ "opacity", -+ "elevation", -+ "zIndex", -+ // "shadowOpacity", // not supported on Android -+ // "shadowRadius", // not supported on Android -+ "backgroundColor", -+ // "color", // TODO: fix animating color of Animated.Text -+ "tintColor", -+ "borderRadius", -+ "borderTopLeftRadius", -+ "borderTopRightRadius", -+ "borderTopStartRadius", -+ "borderTopEndRadius", -+ "borderBottomLeftRadius", -+ "borderBottomRightRadius", -+ "borderBottomStartRadius", -+ "borderBottomEndRadius", -+ "borderStartStartRadius", -+ "borderStartEndRadius", -+ "borderEndStartRadius", -+ "borderEndEndRadius", -+ "borderColor", -+ "borderTopColor", -+ "borderBottomColor", -+ "borderLeftColor", -+ "borderRightColor", -+ "borderStartColor", -+ "borderEndColor", -+ "transform", -+ }; - -- static constexpr auto CMD_UNIT_DEG = 200; -- static constexpr auto CMD_UNIT_RAD = 201; -- static constexpr auto CMD_UNIT_PX = 202; -- static constexpr auto CMD_UNIT_PERCENT = 203; -+ // NOTE: Keep in sync with NativeProxy.java -+ static constexpr auto CMD_START_OF_VIEW = 1; -+ static constexpr auto CMD_START_OF_TRANSFORM = 2; -+ static constexpr auto CMD_END_OF_TRANSFORM = 3; -+ static constexpr auto CMD_END_OF_VIEW = 4; -+ -+ static constexpr auto CMD_OPACITY = 10; -+ static constexpr auto CMD_ELEVATION = 11; -+ static constexpr auto CMD_Z_INDEX = 12; -+ static constexpr auto CMD_SHADOW_OPACITY = 13; -+ static constexpr auto CMD_SHADOW_RADIUS = 14; -+ static constexpr auto CMD_BACKGROUND_COLOR = 15; -+ static constexpr auto CMD_COLOR = 16; -+ static constexpr auto CMD_TINT_COLOR = 17; -+ -+ static constexpr auto CMD_BORDER_RADIUS = 20; -+ static constexpr auto CMD_BORDER_TOP_LEFT_RADIUS = 21; -+ static constexpr auto CMD_BORDER_TOP_RIGHT_RADIUS = 22; -+ static constexpr auto CMD_BORDER_TOP_START_RADIUS = 23; -+ static constexpr auto CMD_BORDER_TOP_END_RADIUS = 24; -+ static constexpr auto CMD_BORDER_BOTTOM_LEFT_RADIUS = 25; -+ static constexpr auto CMD_BORDER_BOTTOM_RIGHT_RADIUS = 26; -+ static constexpr auto CMD_BORDER_BOTTOM_START_RADIUS = 27; -+ static constexpr auto CMD_BORDER_BOTTOM_END_RADIUS = 28; -+ static constexpr auto CMD_BORDER_START_START_RADIUS = 29; -+ static constexpr auto CMD_BORDER_START_END_RADIUS = 30; -+ static constexpr auto CMD_BORDER_END_START_RADIUS = 31; -+ static constexpr auto CMD_BORDER_END_END_RADIUS = 32; -+ -+ static constexpr auto CMD_BORDER_COLOR = 40; -+ static constexpr auto CMD_BORDER_TOP_COLOR = 41; -+ static constexpr auto CMD_BORDER_BOTTOM_COLOR = 42; -+ static constexpr auto CMD_BORDER_LEFT_COLOR = 43; -+ static constexpr auto CMD_BORDER_RIGHT_COLOR = 44; -+ static constexpr auto CMD_BORDER_START_COLOR = 45; -+ static constexpr auto CMD_BORDER_END_COLOR = 46; -+ -+ static constexpr auto CMD_TRANSFORM_TRANSLATE_X = 100; -+ static constexpr auto CMD_TRANSFORM_TRANSLATE_Y = 101; -+ static constexpr auto CMD_TRANSFORM_SCALE = 102; -+ static constexpr auto CMD_TRANSFORM_SCALE_X = 103; -+ static constexpr auto CMD_TRANSFORM_SCALE_Y = 104; -+ static constexpr auto CMD_TRANSFORM_ROTATE = 105; -+ static constexpr auto CMD_TRANSFORM_ROTATE_X = 106; -+ static constexpr auto CMD_TRANSFORM_ROTATE_Y = 107; -+ static constexpr auto CMD_TRANSFORM_ROTATE_Z = 108; -+ static constexpr auto CMD_TRANSFORM_SKEW_X = 109; -+ static constexpr auto CMD_TRANSFORM_SKEW_Y = 110; -+ static constexpr auto CMD_TRANSFORM_MATRIX = 111; -+ static constexpr auto CMD_TRANSFORM_PERSPECTIVE = 112; - -- const auto propNameToCommand = [](const std::string &name) { -- if (name == "opacity") -- return CMD_OPACITY; -+ static constexpr auto CMD_UNIT_DEG = 200; -+ static constexpr auto CMD_UNIT_RAD = 201; -+ static constexpr auto CMD_UNIT_PX = 202; -+ static constexpr auto CMD_UNIT_PERCENT = 203; - -- if (name == "elevation") -- return CMD_ELEVATION; -+ const auto propNameToCommand = [](const std::string &name) { -+ if (name == "opacity") -+ return CMD_OPACITY; - -- if (name == "zIndex") -- return CMD_Z_INDEX; -+ if (name == "elevation") -+ return CMD_ELEVATION; - -- if (name == "shadowOpacity") -- return CMD_SHADOW_OPACITY; -+ if (name == "zIndex") -+ return CMD_Z_INDEX; - -- if (name == "shadowRadius") -- return CMD_SHADOW_RADIUS; -+ if (name == "shadowOpacity") -+ return CMD_SHADOW_OPACITY; - -- if (name == "backgroundColor") -- return CMD_BACKGROUND_COLOR; -+ if (name == "shadowRadius") -+ return CMD_SHADOW_RADIUS; - -- if (name == "color") -- return CMD_COLOR; -+ if (name == "backgroundColor") -+ return CMD_BACKGROUND_COLOR; - -- if (name == "tintColor") -- return CMD_TINT_COLOR; -+ if (name == "color") -+ return CMD_COLOR; - -- if (name == "borderRadius") -- return CMD_BORDER_RADIUS; -+ if (name == "tintColor") -+ return CMD_TINT_COLOR; - -- if (name == "borderTopLeftRadius") -- return CMD_BORDER_TOP_LEFT_RADIUS; -+ if (name == "borderRadius") -+ return CMD_BORDER_RADIUS; - -- if (name == "borderTopRightRadius") -- return CMD_BORDER_TOP_RIGHT_RADIUS; -+ if (name == "borderTopLeftRadius") -+ return CMD_BORDER_TOP_LEFT_RADIUS; - -- if (name == "borderTopStartRadius") -- return CMD_BORDER_TOP_START_RADIUS; -+ if (name == "borderTopRightRadius") -+ return CMD_BORDER_TOP_RIGHT_RADIUS; - -- if (name == "borderTopEndRadius") -- return CMD_BORDER_TOP_END_RADIUS; -+ if (name == "borderTopStartRadius") -+ return CMD_BORDER_TOP_START_RADIUS; - -- if (name == "borderBottomLeftRadius") -- return CMD_BORDER_BOTTOM_LEFT_RADIUS; -+ if (name == "borderTopEndRadius") -+ return CMD_BORDER_TOP_END_RADIUS; - -- if (name == "borderBottomRightRadius") -- return CMD_BORDER_BOTTOM_RIGHT_RADIUS; -- -- if (name == "borderBottomStartRadius") -- return CMD_BORDER_BOTTOM_START_RADIUS; -+ if (name == "borderBottomLeftRadius") -+ return CMD_BORDER_BOTTOM_LEFT_RADIUS; - -- if (name == "borderBottomEndRadius") -- return CMD_BORDER_BOTTOM_END_RADIUS; -+ if (name == "borderBottomRightRadius") -+ return CMD_BORDER_BOTTOM_RIGHT_RADIUS; -+ -+ if (name == "borderBottomStartRadius") -+ return CMD_BORDER_BOTTOM_START_RADIUS; - -- if (name == "borderStartStartRadius") -- return CMD_BORDER_START_START_RADIUS; -+ if (name == "borderBottomEndRadius") -+ return CMD_BORDER_BOTTOM_END_RADIUS; - -- if (name == "borderStartEndRadius") -- return CMD_BORDER_START_END_RADIUS; -+ if (name == "borderStartStartRadius") -+ return CMD_BORDER_START_START_RADIUS; - -- if (name == "borderEndStartRadius") -- return CMD_BORDER_END_START_RADIUS; -+ if (name == "borderStartEndRadius") -+ return CMD_BORDER_START_END_RADIUS; - -- if (name == "borderEndEndRadius") -- return CMD_BORDER_END_END_RADIUS; -+ if (name == "borderEndStartRadius") -+ return CMD_BORDER_END_START_RADIUS; - -- if (name == "borderColor") -- return CMD_BORDER_COLOR; -+ if (name == "borderEndEndRadius") -+ return CMD_BORDER_END_END_RADIUS; - -- if (name == "borderTopColor") -- return CMD_BORDER_TOP_COLOR; -+ if (name == "borderColor") -+ return CMD_BORDER_COLOR; - -- if (name == "borderBottomColor") -- return CMD_BORDER_BOTTOM_COLOR; -+ if (name == "borderTopColor") -+ return CMD_BORDER_TOP_COLOR; - -- if (name == "borderLeftColor") -- return CMD_BORDER_LEFT_COLOR; -+ if (name == "borderBottomColor") -+ return CMD_BORDER_BOTTOM_COLOR; - -- if (name == "borderRightColor") -- return CMD_BORDER_RIGHT_COLOR; -+ if (name == "borderLeftColor") -+ return CMD_BORDER_LEFT_COLOR; - -- if (name == "borderStartColor") -- return CMD_BORDER_START_COLOR; -+ if (name == "borderRightColor") -+ return CMD_BORDER_RIGHT_COLOR; - -- if (name == "borderEndColor") -- return CMD_BORDER_END_COLOR; -+ if (name == "borderStartColor") -+ return CMD_BORDER_START_COLOR; - -- if (name == "transform") -- return CMD_START_OF_TRANSFORM; // TODO: use CMD_TRANSFORM? -+ if (name == "borderEndColor") -+ return CMD_BORDER_END_COLOR; - -- throw std::runtime_error("[Reanimated] Unsupported style: " + name); -- }; -+ if (name == "transform") -+ return CMD_START_OF_TRANSFORM; // TODO: use CMD_TRANSFORM? - -- const auto transformNameToCommand = [](const std::string &name) { -- if (name == "translateX") -- return CMD_TRANSFORM_TRANSLATE_X; -+ throw std::runtime_error("[Reanimated] Unsupported style: " + name); -+ }; - -- if (name == "translateY") -- return CMD_TRANSFORM_TRANSLATE_Y; -+ const auto transformNameToCommand = [](const std::string &name) { -+ if (name == "translateX") -+ return CMD_TRANSFORM_TRANSLATE_X; - -- if (name == "scale") -- return CMD_TRANSFORM_SCALE; -+ if (name == "translateY") -+ return CMD_TRANSFORM_TRANSLATE_Y; - -- if (name == "scaleX") -- return CMD_TRANSFORM_SCALE_X; -+ if (name == "scale") -+ return CMD_TRANSFORM_SCALE; - -- if (name == "scaleY") -- return CMD_TRANSFORM_SCALE_Y; -+ if (name == "scaleX") -+ return CMD_TRANSFORM_SCALE_X; - -- if (name == "rotate") -- return CMD_TRANSFORM_ROTATE; -+ if (name == "scaleY") -+ return CMD_TRANSFORM_SCALE_Y; - -- if (name == "rotateX") -- return CMD_TRANSFORM_ROTATE_X; -+ if (name == "rotate") -+ return CMD_TRANSFORM_ROTATE; - -- if (name == "rotateY") -- return CMD_TRANSFORM_ROTATE_Y; -+ if (name == "rotateX") -+ return CMD_TRANSFORM_ROTATE_X; - -- if (name == "rotateZ") -- return CMD_TRANSFORM_ROTATE_Z; -+ if (name == "rotateY") -+ return CMD_TRANSFORM_ROTATE_Y; - -- if (name == "skewX") -- return CMD_TRANSFORM_SKEW_X; -+ if (name == "rotateZ") -+ return CMD_TRANSFORM_ROTATE_Z; - -- if (name == "skewY") -- return CMD_TRANSFORM_SKEW_Y; -+ if (name == "skewX") -+ return CMD_TRANSFORM_SKEW_X; - -- if (name == "matrix") -- return CMD_TRANSFORM_MATRIX; -+ if (name == "skewY") -+ return CMD_TRANSFORM_SKEW_Y; - -- if (name == "perspective") -- return CMD_TRANSFORM_PERSPECTIVE; -+ if (name == "matrix") -+ return CMD_TRANSFORM_MATRIX; - -- throw std::runtime_error("[Reanimated] Unsupported transform: " + name); -- }; -+ if (name == "perspective") -+ return CMD_TRANSFORM_PERSPECTIVE; - -- auto [synchronousUpdatesBatch, shadowTreeUpdatesBatch] = partitionUpdates( -- updatesBatch, synchronousProps, true, allowPartialUpdates); -- -- if (!synchronousUpdatesBatch.empty()) { -- std::vector intBuffer; -- std::vector doubleBuffer; -- intBuffer.reserve(1024); -- doubleBuffer.reserve(1024); -- -- for (const auto &[shadowNode, props] : synchronousUpdatesBatch) { -- intBuffer.push_back(CMD_START_OF_VIEW); -- intBuffer.push_back(shadowNode->getTag()); -- for (const auto &[key, value] : props.items()) { -- const auto command = propNameToCommand(key.getString()); -- switch (command) { -- case CMD_OPACITY: -- case CMD_ELEVATION: -- case CMD_Z_INDEX: -- case CMD_SHADOW_OPACITY: -- case CMD_SHADOW_RADIUS: -- intBuffer.push_back(command); -- doubleBuffer.push_back(value.asDouble()); -- break; -+ throw std::runtime_error("[Reanimated] Unsupported transform: " + name); -+ }; - -- case CMD_BACKGROUND_COLOR: -- case CMD_COLOR: -- case CMD_TINT_COLOR: -- case CMD_BORDER_COLOR: -- case CMD_BORDER_TOP_COLOR: -- case CMD_BORDER_BOTTOM_COLOR: -- case CMD_BORDER_LEFT_COLOR: -- case CMD_BORDER_RIGHT_COLOR: -- case CMD_BORDER_START_COLOR: -- case CMD_BORDER_END_COLOR: -- intBuffer.push_back(command); -- intBuffer.push_back(value.asInt()); -- break; -+ UpdatesBatch synchronousUpdatesBatch, shadowTreeUpdatesBatch; - -- case CMD_BORDER_RADIUS: -- case CMD_BORDER_TOP_LEFT_RADIUS: -- case CMD_BORDER_TOP_RIGHT_RADIUS: -- case CMD_BORDER_TOP_START_RADIUS: -- case CMD_BORDER_TOP_END_RADIUS: -- case CMD_BORDER_BOTTOM_LEFT_RADIUS: -- case CMD_BORDER_BOTTOM_RIGHT_RADIUS: -- case CMD_BORDER_BOTTOM_START_RADIUS: -- case CMD_BORDER_BOTTOM_END_RADIUS: -- case CMD_BORDER_START_START_RADIUS: -- case CMD_BORDER_START_END_RADIUS: -- case CMD_BORDER_END_START_RADIUS: -- case CMD_BORDER_END_END_RADIUS: -- intBuffer.push_back(command); -- if (value.isDouble()) { -- intBuffer.push_back(CMD_UNIT_PX); -- doubleBuffer.push_back(value.getDouble()); -- } else if (value.isString()) { -- const auto &valueStr = value.getString(); -- if (!valueStr.ends_with("%")) { -- throw std::runtime_error( -- "[Reanimated] Border radius string must be a percentage"); -- } -- intBuffer.push_back(CMD_UNIT_PERCENT); -- doubleBuffer.push_back(std::stof(valueStr.substr(0, -1))); -- } else { -- throw std::runtime_error( -- "[Reanimated] Border radius value must be either a number or a string"); -- } -+ for (const auto &[shadowNode, props] : updatesBatch) { -+ bool hasOnlySynchronousProps = true; -+ for (const auto &key : props.keys()) { -+ const auto keyStr = key.asString(); -+ if (!synchronousProps.contains(keyStr)) { -+ hasOnlySynchronousProps = false; - break; -+ } -+ } -+ if (hasOnlySynchronousProps) { -+ synchronousUpdatesBatch.emplace_back(shadowNode, props); -+ } else { -+ shadowTreeUpdatesBatch.emplace_back(shadowNode, props); -+ } -+ } - -- case CMD_START_OF_TRANSFORM: -- intBuffer.push_back(command); -- react_native_assert( -- value.isArray() && -- "[Reanimated] Transform value must be an array"); -- for (const auto &item : value) { -- react_native_assert( -- item.isObject() && -- "[Reanimated] Transform array item must be an object"); -- react_native_assert( -- item.size() == 1 && -- "[Reanimated] Transform array item must have exactly one key-value pair"); -- const auto transformCommand = -- transformNameToCommand(item.keys().begin()->getString()); -- const auto &transformValue = *item.values().begin(); -- switch (transformCommand) { -- case CMD_TRANSFORM_SCALE: -- case CMD_TRANSFORM_SCALE_X: -- case CMD_TRANSFORM_SCALE_Y: -- case CMD_TRANSFORM_PERSPECTIVE: { -- intBuffer.push_back(transformCommand); -- doubleBuffer.push_back(transformValue.asDouble()); -- break; -- } -- case CMD_TRANSFORM_TRANSLATE_X: -- case CMD_TRANSFORM_TRANSLATE_Y: { -- intBuffer.push_back(transformCommand); -- if (transformValue.isDouble()) { -- intBuffer.push_back(CMD_UNIT_PX); -- doubleBuffer.push_back(transformValue.getDouble()); -- } else if (transformValue.isString()) { -- const auto &transformValueStr = transformValue.getString(); -- if (!transformValueStr.ends_with("%")) { -- throw std::runtime_error( -- "[Reanimated] String translate must be a percentage"); -- } -- intBuffer.push_back(CMD_UNIT_PERCENT); -- doubleBuffer.push_back( -- std::stof(transformValueStr.substr(0, -1))); -- } else { -+ if (!synchronousUpdatesBatch.empty()) { -+ std::vector intBuffer; -+ std::vector doubleBuffer; -+ intBuffer.reserve(1024); -+ doubleBuffer.reserve(1024); -+ -+ for (const auto &[shadowNode, props] : synchronousUpdatesBatch) { -+ intBuffer.push_back(CMD_START_OF_VIEW); -+ intBuffer.push_back(shadowNode->getTag()); -+ for (const auto &[key, value] : props.items()) { -+ const auto command = propNameToCommand(key.getString()); -+ switch (command) { -+ case CMD_OPACITY: -+ case CMD_ELEVATION: -+ case CMD_Z_INDEX: -+ case CMD_SHADOW_OPACITY: -+ case CMD_SHADOW_RADIUS: -+ intBuffer.push_back(command); -+ doubleBuffer.push_back(value.asDouble()); -+ break; -+ -+ case CMD_BACKGROUND_COLOR: -+ case CMD_COLOR: -+ case CMD_TINT_COLOR: -+ case CMD_BORDER_COLOR: -+ case CMD_BORDER_TOP_COLOR: -+ case CMD_BORDER_BOTTOM_COLOR: -+ case CMD_BORDER_LEFT_COLOR: -+ case CMD_BORDER_RIGHT_COLOR: -+ case CMD_BORDER_START_COLOR: -+ case CMD_BORDER_END_COLOR: -+ intBuffer.push_back(command); -+ intBuffer.push_back(value.asInt()); -+ break; -+ -+ case CMD_BORDER_RADIUS: -+ case CMD_BORDER_TOP_LEFT_RADIUS: -+ case CMD_BORDER_TOP_RIGHT_RADIUS: -+ case CMD_BORDER_TOP_START_RADIUS: -+ case CMD_BORDER_TOP_END_RADIUS: -+ case CMD_BORDER_BOTTOM_LEFT_RADIUS: -+ case CMD_BORDER_BOTTOM_RIGHT_RADIUS: -+ case CMD_BORDER_BOTTOM_START_RADIUS: -+ case CMD_BORDER_BOTTOM_END_RADIUS: -+ case CMD_BORDER_START_START_RADIUS: -+ case CMD_BORDER_START_END_RADIUS: -+ case CMD_BORDER_END_START_RADIUS: -+ case CMD_BORDER_END_END_RADIUS: -+ intBuffer.push_back(command); -+ if (value.isDouble()) { -+ intBuffer.push_back(CMD_UNIT_PX); -+ doubleBuffer.push_back(value.getDouble()); -+ } else if (value.isString()) { -+ const auto &valueStr = value.getString(); -+ if (!valueStr.ends_with("%")) { - throw std::runtime_error( -- "[Reanimated] Translate value must be either a number or a string"); -+ "[Reanimated] Border radius string must be a percentage"); - } -- break; -+ intBuffer.push_back(CMD_UNIT_PERCENT); -+ doubleBuffer.push_back(std::stof(valueStr.substr(0, -1))); -+ } else { -+ throw std::runtime_error( -+ "[Reanimated] Border radius value must be either a number or a string"); - } -- case CMD_TRANSFORM_ROTATE: -- case CMD_TRANSFORM_ROTATE_X: -- case CMD_TRANSFORM_ROTATE_Y: -- case CMD_TRANSFORM_ROTATE_Z: -- case CMD_TRANSFORM_SKEW_X: -- case CMD_TRANSFORM_SKEW_Y: { -- const auto &transformValueStr = transformValue.getString(); -- intBuffer.push_back(transformCommand); -- if (transformValueStr.ends_with("deg")) { -- intBuffer.push_back(CMD_UNIT_DEG); -- } else if (transformValueStr.ends_with("rad")) { -- intBuffer.push_back(CMD_UNIT_RAD); -- } else { -- throw std::runtime_error( -- "[Reanimated] Unsupported rotation unit: " + -- transformValueStr); -- } -- doubleBuffer.push_back( -- std::stof(transformValueStr.substr(0, -3))); -- break; -- } -- case CMD_TRANSFORM_MATRIX: { -- intBuffer.push_back(transformCommand); -+ break; -+ -+ case CMD_START_OF_TRANSFORM: -+ intBuffer.push_back(command); -+ react_native_assert( -+ value.isArray() && -+ "[Reanimated] Transform value must be an array"); -+ for (const auto &item : value) { -+ react_native_assert( -+ item.isObject() && -+ "[Reanimated] Transform array item must be an object"); - react_native_assert( -- transformValue.isArray() && -- "[Reanimated] Matrix must be an array"); -- int size = transformValue.size(); -- intBuffer.push_back(size); -- for (int i = 0; i < size; i++) { -- doubleBuffer.push_back(transformValue[i].asDouble()); -+ item.size() == 1 && -+ "[Reanimated] Transform array item must have exactly one key-value pair"); -+ const auto transformCommand = -+ transformNameToCommand(item.keys().begin()->getString()); -+ const auto &transformValue = *item.values().begin(); -+ switch (transformCommand) { -+ case CMD_TRANSFORM_SCALE: -+ case CMD_TRANSFORM_SCALE_X: -+ case CMD_TRANSFORM_SCALE_Y: -+ case CMD_TRANSFORM_PERSPECTIVE: { -+ intBuffer.push_back(transformCommand); -+ doubleBuffer.push_back(transformValue.asDouble()); -+ break; -+ } -+ -+ case CMD_TRANSFORM_TRANSLATE_X: -+ case CMD_TRANSFORM_TRANSLATE_Y: { -+ intBuffer.push_back(transformCommand); -+ if (transformValue.isDouble()) { -+ intBuffer.push_back(CMD_UNIT_PX); -+ doubleBuffer.push_back(transformValue.getDouble()); -+ } else if (transformValue.isString()) { -+ const auto &transformValueStr = -+ transformValue.getString(); -+ if (!transformValueStr.ends_with("%")) { -+ throw std::runtime_error( -+ "[Reanimated] String translate must be a percentage"); -+ } -+ intBuffer.push_back(CMD_UNIT_PERCENT); -+ doubleBuffer.push_back( -+ std::stof(transformValueStr.substr(0, -1))); -+ } else { -+ throw std::runtime_error( -+ "[Reanimated] Translate value must be either a number or a string"); -+ } -+ break; -+ } -+ -+ case CMD_TRANSFORM_ROTATE: -+ case CMD_TRANSFORM_ROTATE_X: -+ case CMD_TRANSFORM_ROTATE_Y: -+ case CMD_TRANSFORM_ROTATE_Z: -+ case CMD_TRANSFORM_SKEW_X: -+ case CMD_TRANSFORM_SKEW_Y: { -+ const auto &transformValueStr = -+ transformValue.getString(); -+ intBuffer.push_back(transformCommand); -+ if (transformValueStr.ends_with("deg")) { -+ intBuffer.push_back(CMD_UNIT_DEG); -+ } else if (transformValueStr.ends_with("rad")) { -+ intBuffer.push_back(CMD_UNIT_RAD); -+ } else { -+ throw std::runtime_error( -+ "[Reanimated] Unsupported rotation unit: " + -+ transformValueStr); -+ } -+ doubleBuffer.push_back( -+ std::stof(transformValueStr.substr(0, -3))); -+ break; -+ } -+ -+ case CMD_TRANSFORM_MATRIX: { -+ intBuffer.push_back(transformCommand); -+ react_native_assert( -+ transformValue.isArray() && -+ "[Reanimated] Matrix must be an array"); -+ int size = transformValue.size(); -+ intBuffer.push_back(size); -+ for (int i = 0; i < size; i++) { -+ doubleBuffer.push_back(transformValue[i].asDouble()); -+ } -+ break; -+ } - } -- break; - } -- } -+ intBuffer.push_back(CMD_END_OF_TRANSFORM); -+ break; - } -- intBuffer.push_back(CMD_END_OF_TRANSFORM); -- break; -+ } -+ intBuffer.push_back(CMD_END_OF_VIEW); - } -+ synchronouslyUpdateUIPropsFunction_(intBuffer, doubleBuffer); - } -- intBuffer.push_back(CMD_END_OF_VIEW); -+ -+ updatesBatch = std::move(shadowTreeUpdatesBatch); -+ } -+#endif // ANDROID -+ -+ if ((updatesBatch.size() > 0) && -+ updatesRegistryManager_->shouldReanimatedSkipCommit()) { -+ updatesRegistryManager_->pleaseCommitAfterPause(); - } -- synchronouslyUpdateUIPropsFunction_(intBuffer, doubleBuffer); - } - -- updatesBatch = std::move(shadowTreeUpdatesBatch); --#endif // ANDROID -+ if (updatesRegistryManager_->shouldReanimatedSkipCommit()) { -+ // It may happen that `performOperations` is called on the UI thread -+ // while React Native tries to commit a new tree on the JS thread. -+ // In this case, we should skip the commit here and let React Native do -+ // it. The commit will include the current values from the updates manager -+ // which will be applied in ReanimatedCommitHook. -+ return; -+ } -+ -+ commitUpdates(rt, updatesBatch); -+ -+ // Clear the entire cache after the commit -+ // (we don't know if the view is updated from outside of Reanimated -+ // so we have to clear the entire cache) -+ viewStylesRepository_->clearNodesCache(); - } - - void ReanimatedModuleProxy::requestFlushRegistry() { -diff --git a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h -index 4d86766..9e0599a 100644 ---- a/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h -+++ b/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.h -@@ -118,7 +118,6 @@ class ReanimatedModuleProxy - double getCssTimestamp(); - - void performOperations(); -- void performNonLayoutOperations(); - - void setViewStyle( - jsi::Runtime &rt, -@@ -219,9 +218,6 @@ class ReanimatedModuleProxy - - private: - void commitUpdates(jsi::Runtime &rt, const UpdatesBatch &updatesBatch); -- void applySynchronousUpdates( -- UpdatesBatch &updatesBatch, -- bool allowPartialUpdates = false); - - const bool isReducedMotion_; - bool shouldFlushRegistry_ = false; -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cache-v2-5efab75bf981d8230c60.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cache-v2-5efab75bf981d8230c60.json -new file mode 100644 -index 0000000..c657672 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cache-v2-5efab75bf981d8230c60.json -@@ -0,0 +1,1479 @@ -+{ -+ "entries" : -+ [ -+ { -+ "name" : "ANDROID_ABI", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "arm64-v8a" -+ }, -+ { -+ "name" : "ANDROID_NDK", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006" -+ }, -+ { -+ "name" : "ANDROID_PLATFORM", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "android-24" -+ }, -+ { -+ "name" : "ANDROID_STL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "c++_shared" -+ }, -+ { -+ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "ON" -+ }, -+ { -+ "name" : "ANDROID_TOOLCHAIN", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "clang" -+ }, -+ { -+ "name" : "CMAKE_ADDR2LINE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" -+ }, -+ { -+ "name" : "CMAKE_ANDROID_ARCH_ABI", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "arm64-v8a" -+ }, -+ { -+ "name" : "CMAKE_ANDROID_NDK", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006" -+ }, -+ { -+ "name" : "CMAKE_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" -+ }, -+ { -+ "name" : "CMAKE_ASM_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during all build types." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_ASM_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during debug builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_ASM_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during release builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_BUILD_TYPE", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "Debug" -+ }, -+ { -+ "name" : "CMAKE_CACHEFILE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "This is the directory where this CMakeCache.txt was created" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a" -+ }, -+ { -+ "name" : "CMAKE_CACHE_MAJOR_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Major version of cmake used to create the current loaded cache" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "3" -+ }, -+ { -+ "name" : "CMAKE_CACHE_MINOR_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Minor version of cmake used to create the current loaded cache" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "22" -+ }, -+ { -+ "name" : "CMAKE_CACHE_PATCH_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Patch version of cmake used to create the current loaded cache" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "1" -+ }, -+ { -+ "name" : "CMAKE_COMMAND", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to CMake executable." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake" -+ }, -+ { -+ "name" : "CMAKE_CPACK_COMMAND", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to cpack program executable." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack" -+ }, -+ { -+ "name" : "CMAKE_CTEST_COMMAND", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to ctest program executable." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Generate index for LLVM archive" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during all build types." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during debug builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-Os -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during release builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-O2 -g -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Libraries linked by default with all C++ applications." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-latomic -lm" -+ }, -+ { -+ "name" : "CMAKE_C_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" -+ }, -+ { -+ "name" : "CMAKE_C_COMPILER_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Generate index for LLVM archive" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" -+ }, -+ { -+ "name" : "CMAKE_C_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during all build types." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_C_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during debug builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_C_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the C compiler during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-Os -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_C_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during release builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-O2 -g -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_C_STANDARD_LIBRARIES", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Libraries linked by default with all C applications." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-latomic -lm" -+ }, -+ { -+ "name" : "CMAKE_DLLTOOL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" -+ }, -+ { -+ "name" : "CMAKE_EDIT_COMMAND", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to cache edit program executable." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake" -+ }, -+ { -+ "name" : "CMAKE_EXECUTABLE_FORMAT", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Executable file format" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "ELF" -+ }, -+ { -+ "name" : "CMAKE_EXE_LINKER_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during DEBUG builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during RELEASE builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "ON" -+ }, -+ { -+ "name" : "CMAKE_EXTRA_GENERATOR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Name of external makefile project generator." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_FIND_ROOT_PATH", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab" -+ }, -+ { -+ "name" : "CMAKE_GENERATOR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Name of generator." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "Ninja" -+ }, -+ { -+ "name" : "CMAKE_GENERATOR_INSTANCE", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Generator instance identifier." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_GENERATOR_PLATFORM", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Name of generator platform." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_GENERATOR_TOOLSET", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Name of generator toolset." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_HOME_DIRECTORY", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Source directory with the top level CMakeLists.txt file for this project" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" -+ }, -+ { -+ "name" : "CMAKE_INSTALL_PREFIX", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Install path prefix, prepended onto install directories." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/usr/local" -+ }, -+ { -+ "name" : "CMAKE_INSTALL_SO_NO_EXE", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Install .so files without execute permission." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "0" -+ }, -+ { -+ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a" -+ }, -+ { -+ "name" : "CMAKE_LINKER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" -+ }, -+ { -+ "name" : "CMAKE_MAKE_PROGRAM", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja" -+ }, -+ { -+ "name" : "CMAKE_MODULE_LINKER_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of modules." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_NM", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" -+ }, -+ { -+ "name" : "CMAKE_NUMBER_OF_MAKEFILES", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "number of local generators" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "1" -+ }, -+ { -+ "name" : "CMAKE_OBJCOPY", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" -+ }, -+ { -+ "name" : "CMAKE_OBJDUMP", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" -+ }, -+ { -+ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Platform information initialized" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "1" -+ }, -+ { -+ "name" : "CMAKE_PROJECT_DESCRIPTION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_PROJECT_NAME", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "Reanimated" -+ }, -+ { -+ "name" : "CMAKE_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Ranlib" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" -+ }, -+ { -+ "name" : "CMAKE_READELF", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" -+ }, -+ { -+ "name" : "CMAKE_ROOT", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to CMake installation." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" -+ }, -+ { -+ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a" -+ }, -+ { -+ "name" : "CMAKE_SHARED_LINKER_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of dll's." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_SKIP_INSTALL_RPATH", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." -+ } -+ ], -+ "type" : "BOOL", -+ "value" : "NO" -+ }, -+ { -+ "name" : "CMAKE_SKIP_RPATH", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "If set, runtime paths are not added when using shared libraries." -+ } -+ ], -+ "type" : "BOOL", -+ "value" : "NO" -+ }, -+ { -+ "name" : "CMAKE_STATIC_LINKER_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of static libraries during all build types." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_STRIP", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Strip" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" -+ }, -+ { -+ "name" : "CMAKE_SYSTEM_NAME", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "Android" -+ }, -+ { -+ "name" : "CMAKE_SYSTEM_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "24" -+ }, -+ { -+ "name" : "CMAKE_TOOLCHAIN_FILE", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "name" : "CMAKE_UNAME", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "uname command" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/usr/bin/uname" -+ }, -+ { -+ "name" : "CMAKE_VERBOSE_MAKEFILE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." -+ } -+ ], -+ "type" : "BOOL", -+ "value" : "FALSE" -+ }, -+ { -+ "name" : "IS_REANIMATED_EXAMPLE_APP", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "false" -+ }, -+ { -+ "name" : "REACT_NATIVE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native" -+ }, -+ { -+ "name" : "REACT_NATIVE_MINOR_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "81" -+ }, -+ { -+ "name" : "REACT_NATIVE_WORKLETS_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets" -+ }, -+ { -+ "name" : "REANIMATED_FEATURE_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -+ }, -+ { -+ "name" : "REANIMATED_PROFILING", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "false" -+ }, -+ { -+ "name" : "REANIMATED_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "4.1.6" -+ }, -+ { -+ "name" : "ReactAndroid_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for ReactAndroid." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid" -+ }, -+ { -+ "name" : "Reanimated_BINARY_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a" -+ }, -+ { -+ "name" : "Reanimated_IS_TOP_LEVEL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "ON" -+ }, -+ { -+ "name" : "Reanimated_SOURCE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" -+ }, -+ { -+ "name" : "fbjni_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for fbjni." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni" -+ }, -+ { -+ "name" : "reanimated_LIB_DEPENDS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Dependencies for the target" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;android;general;worklets;general;ReactAndroid::reactnative;" -+ } -+ ], -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-5bad77d5d4eac1fa18fb.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-5bad77d5d4eac1fa18fb.json -new file mode 100644 -index 0000000..577b946 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-5bad77d5d4eac1fa18fb.json -@@ -0,0 +1,208 @@ -+{ -+ "inputs" : -+ [ -+ { -+ "path" : "CMakeLists.txt" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : ".cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : ".cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : ".cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" -+ }, -+ { -+ "path" : ".cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" -+ }, -+ { -+ "path" : ".cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake" -+ }, -+ { -+ "path" : ".cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" -+ }, -+ { -+ "path" : ".cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake" -+ } -+ ], -+ "kind" : "cmakeFiles", -+ "paths" : -+ { -+ "build" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "source" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" -+ }, -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-7a94a7ddcedb55cd4984.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-7a94a7ddcedb55cd4984.json -new file mode 100644 -index 0000000..12c11ed ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-7a94a7ddcedb55cd4984.json -@@ -0,0 +1,60 @@ -+{ -+ "configurations" : -+ [ -+ { -+ "directories" : -+ [ -+ { -+ "build" : ".", -+ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", -+ "minimumCMakeVersion" : -+ { -+ "string" : "3.13" -+ }, -+ "projectIndex" : 0, -+ "source" : ".", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "name" : "Debug", -+ "projects" : -+ [ -+ { -+ "directoryIndexes" : -+ [ -+ 0 -+ ], -+ "name" : "Reanimated", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "targets" : -+ [ -+ { -+ "directoryIndex" : 0, -+ "id" : "reanimated::@6890427a1f51a3e7e1df", -+ "jsonFile" : "target-reanimated-Debug-553bfda4a1218952d721.json", -+ "name" : "reanimated", -+ "projectIndex" : 0 -+ } -+ ] -+ } -+ ], -+ "kind" : "codemodel", -+ "paths" : -+ { -+ "build" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "source" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" -+ }, -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -new file mode 100644 -index 0000000..3a67af9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -@@ -0,0 +1,14 @@ -+{ -+ "backtraceGraph" : -+ { -+ "commands" : [], -+ "files" : [], -+ "nodes" : [] -+ }, -+ "installers" : [], -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ } -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/index-2026-06-08T20-46-56-0047.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/index-2026-06-08T20-46-56-0047.json -new file mode 100644 -index 0000000..b1b0143 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/index-2026-06-08T20-46-56-0047.json -@@ -0,0 +1,92 @@ -+{ -+ "cmake" : -+ { -+ "generator" : -+ { -+ "multiConfig" : false, -+ "name" : "Ninja" -+ }, -+ "paths" : -+ { -+ "cmake" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cpack" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack", -+ "ctest" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest", -+ "root" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" -+ }, -+ "version" : -+ { -+ "isDirty" : false, -+ "major" : 3, -+ "minor" : 22, -+ "patch" : 1, -+ "string" : "3.22.1-g37088a8", -+ "suffix" : "g37088a8" -+ } -+ }, -+ "objects" : -+ [ -+ { -+ "jsonFile" : "codemodel-v2-7a94a7ddcedb55cd4984.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ }, -+ { -+ "jsonFile" : "cache-v2-5efab75bf981d8230c60.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ { -+ "jsonFile" : "cmakeFiles-v1-5bad77d5d4eac1fa18fb.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ } -+ ], -+ "reply" : -+ { -+ "client-agp" : -+ { -+ "cache-v2" : -+ { -+ "jsonFile" : "cache-v2-5efab75bf981d8230c60.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ "cmakeFiles-v1" : -+ { -+ "jsonFile" : "cmakeFiles-v1-5bad77d5d4eac1fa18fb.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ }, -+ "codemodel-v2" : -+ { -+ "jsonFile" : "codemodel-v2-7a94a7ddcedb55cd4984.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ } -+ } -+ } -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/target-reanimated-Debug-553bfda4a1218952d721.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/target-reanimated-Debug-553bfda4a1218952d721.json -new file mode 100644 -index 0000000..22c3864 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.cmake/api/v1/reply/target-reanimated-Debug-553bfda4a1218952d721.json -@@ -0,0 +1,877 @@ -+{ -+ "artifacts" : -+ [ -+ { -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so" -+ } -+ ], -+ "backtrace" : 1, -+ "backtraceGraph" : -+ { -+ "commands" : -+ [ -+ "add_library", -+ "target_link_libraries", -+ "add_compile_options", -+ "target_compile_options", -+ "target_compile_reactnative_options", -+ "target_compile_definitions", -+ "target_include_directories" -+ ], -+ "files" : -+ [ -+ "CMakeLists.txt", -+ "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake" -+ ], -+ "nodes" : -+ [ -+ { -+ "file" : 0 -+ }, -+ { -+ "command" : 0, -+ "file" : 0, -+ "line" : 48, -+ "parent" : 0 -+ }, -+ { -+ "command" : 1, -+ "file" : 0, -+ "line" : 95, -+ "parent" : 0 -+ }, -+ { -+ "command" : 1, -+ "file" : 0, -+ "line" : 99, -+ "parent" : 0 -+ }, -+ { -+ "command" : 2, -+ "file" : 0, -+ "line" : 12, -+ "parent" : 0 -+ }, -+ { -+ "command" : 4, -+ "file" : 0, -+ "line" : 54, -+ "parent" : 0 -+ }, -+ { -+ "command" : 3, -+ "file" : 1, -+ "line" : 30, -+ "parent" : 5 -+ }, -+ { -+ "command" : 5, -+ "file" : 1, -+ "line" : 33, -+ "parent" : 5 -+ }, -+ { -+ "command" : 6, -+ "file" : 0, -+ "line" : 60, -+ "parent" : 0 -+ } -+ ] -+ }, -+ "compileGroups" : -+ [ -+ { -+ "compileCommandFragments" : -+ [ -+ { -+ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_NO_CONFIG=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_USE_LIBCPP=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_MOBILE=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-Wall" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-Werror" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-fexceptions" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-frtti" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-std=c++20" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-DLOG_TAG=\\\"ReactNative\\\"" -+ }, -+ { -+ "fragment" : "-std=gnu++20" -+ } -+ ], -+ "defines" : -+ [ -+ { -+ "backtrace" : 7, -+ "define" : "RN_SERIALIZABLE_STATE" -+ }, -+ { -+ "define" : "reanimated_EXPORTS" -+ } -+ ], -+ "includes" : -+ [ -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" -+ }, -+ { -+ "backtrace" : 3, -+ "isSystem" : true, -+ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include" -+ } -+ ], -+ "language" : "CXX", -+ "languageStandard" : -+ { -+ "backtraces" : -+ [ -+ 1 -+ ], -+ "standard" : "20" -+ }, -+ "sourceIndexes" : -+ [ -+ 0, -+ 1, -+ 2, -+ 3, -+ 4, -+ 5, -+ 6, -+ 7, -+ 8, -+ 9, -+ 10, -+ 11, -+ 12, -+ 13, -+ 14, -+ 15, -+ 16, -+ 17, -+ 18, -+ 19, -+ 20, -+ 21, -+ 22, -+ 23, -+ 24, -+ 25, -+ 26, -+ 27, -+ 28, -+ 29, -+ 30, -+ 31, -+ 32, -+ 33, -+ 34, -+ 35, -+ 36, -+ 37, -+ 38, -+ 39, -+ 40, -+ 41, -+ 42, -+ 43, -+ 44, -+ 45, -+ 46, -+ 47, -+ 48, -+ 49, -+ 50, -+ 51, -+ 52, -+ 53, -+ 54, -+ 55, -+ 56, -+ 57, -+ 58, -+ 59, -+ 60, -+ 61, -+ 62, -+ 63, -+ 64, -+ 65, -+ 66, -+ 67, -+ 68, -+ 69, -+ 70 -+ ], -+ "sysroot" : -+ { -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ } -+ ], -+ "id" : "reanimated::@6890427a1f51a3e7e1df", -+ "link" : -+ { -+ "commandFragments" : -+ [ -+ { -+ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections", -+ "role" : "flags" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "-llog", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "-landroid", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", -+ "role" : "libraries" -+ }, -+ { -+ "fragment" : "-latomic -lm", -+ "role" : "libraries" -+ } -+ ], -+ "language" : "CXX", -+ "sysroot" : -+ { -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ }, -+ "name" : "reanimated", -+ "nameOnDisk" : "libreanimated.so", -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ }, -+ "sourceGroups" : -+ [ -+ { -+ "name" : "Source Files", -+ "sourceIndexes" : -+ [ -+ 0, -+ 1, -+ 2, -+ 3, -+ 4, -+ 5, -+ 6, -+ 7, -+ 8, -+ 9, -+ 10, -+ 11, -+ 12, -+ 13, -+ 14, -+ 15, -+ 16, -+ 17, -+ 18, -+ 19, -+ 20, -+ 21, -+ 22, -+ 23, -+ 24, -+ 25, -+ 26, -+ 27, -+ 28, -+ 29, -+ 30, -+ 31, -+ 32, -+ 33, -+ 34, -+ 35, -+ 36, -+ 37, -+ 38, -+ 39, -+ 40, -+ 41, -+ 42, -+ 43, -+ 44, -+ 45, -+ 46, -+ 47, -+ 48, -+ 49, -+ 50, -+ 51, -+ 52, -+ 53, -+ 54, -+ 55, -+ 56, -+ 57, -+ 58, -+ 59, -+ 60, -+ 61, -+ 62, -+ 63, -+ 64, -+ 65, -+ 66, -+ 67, -+ 68, -+ 69, -+ 70 -+ ] -+ } -+ ], -+ "sources" : -+ [ -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "src/main/cpp/reanimated/android/NativeProxy.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "src/main/cpp/reanimated/android/OnLoad.cpp", -+ "sourceGroupIndex" : 0 -+ } -+ ], -+ "type" : "SHARED_LIBRARY" -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_deps b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_deps -new file mode 100644 -index 0000000..2eca6b8 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_deps differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_log b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_log -new file mode 100644 -index 0000000..5c9c84c ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/.ninja_log -@@ -0,0 +1,147 @@ -+# ninja log v5 -+0 66 0 /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs b3f027c1a1bba3d8 -+38 5727 1769779148342970831 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o 2c4891a445ddbba3 -+35 22825 1769779165406130615 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o b609325169522d69 -+33 13147 1769779155732160897 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o 793b479a5560cddc -+18526 52478 1769779194942682076 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o 963289a887de8960 -+6354 29761 1769779172337314833 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o 72052bb2ae711531 -+6035 29967 1769779172562126267 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o e7f8dd84beb010bf -+101415 114658 1769779257226660158 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o f047cd5b534f089d -+29 6035 1769779148673003515 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o cea584cdc8ede381 -+138616 153718 1769779296340641855 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o 1ef018cc8120bf72 -+33207 44712 1769779187276863838 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o 43d29c93237eca42 -+36 21421 1769779163998216181 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o b910ec984c4e0b3a -+112329 138969 1769779281529163096 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o 127c354e400e0393 -+45631 71993 1769779214520217203 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o 3e041bbe7e5c4490 -+44 21539 1769779164148802246 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o 308fa401deace011 -+45165 78835 1769779221335743173 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o fde7ed7094576215 -+22826 33206 1769779175839472786 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o a3e7657d25700da9 -+29028 36325 1769779178965744280 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o e74411028198584d -+71993 101415 1769779243986004529 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o 4ad109d4200e10b7 -+42 36111 1769779178551699234 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o bee7a05881b90843 -+29761 55974 1769779198577338867 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o 7cf5808bf644448 -+128331 152370 1769779294803916328 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o 315694dfff4692c4 -+44713 53495 1769779196102102288 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o 7055ea42f2f639ed -+67065 98372 1769779240920729860 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o 4f2c73ec131842f5 -+132463 165032 1769779307516804422 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o 95b8349aea7a56b6 -+40 6353 1769779148976903424 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o a0dc35a7b81db374 -+138969 175475 1769779317959961585 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o 52c72f63c548ad34 -+53496 85495 1769779227928098614 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o dbb462eee517196b -+100277 128331 1769779270807689666 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o 82aeed7fbf7553f6 -+78835 105953 1769779248561041685 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o d2360996e6c54329 -+138643 143008 1769779285643737952 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o 502071d4546dba5f -+36111 45165 1769779187772777941 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o e50af84c5eda6798 -+31 67065 1769779208874166757 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o 6b120a940e295b60 -+29967 60556 1769779203012626405 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o abb276eee84aeae3 -+21422 72520 1769779214760406018 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o fa2e524ae0d67988 -+49212 77489 1769779220032799598 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o 4bf64f5c01bbaa05 -+28 18525 1769779161097090392 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o 4b08dcc218e6d4e6 -+52479 84252 1769779226679438771 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o 1b5f85a5da056efd -+55974 90271 1769779232725249594 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o ad7a664c62b5b9c6 -+175476 176511 1769779318950184755 ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so 3a9d6d2d387cb734 -+107617 111525 1769779254154660428 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o f433aa94e318f299 -+105954 129794 1769779272365719182 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o 6124a7c2f5e1848 -+114658 138643 1769779281251441397 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o 446778397400854d -+60561 100277 1769779242772896815 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o bb95e4af8fb1b7d6 -+13149 36467 1769779179101455982 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o dce4d266533efc6d -+98373 132462 1769779274889080266 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o 6a0a700524268d92 -+93681 114077 1769779256656452615 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o 13a92467f6cd0264 -+90272 93681 1769779236308673299 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o 9f0f60546abfa7ce -+67272 103047 1769779245570981265 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o c3870ed2c8d51f86 -+36325 45631 1769779188272473249 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o 6b7c69cd016d6f2d -+146199 152078 1769779294709888052 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o 9709c02452c8c53d -+84252 109043 1769779251585780735 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o d0278eef009c8bc4 -+109043 133821 1769779276437011360 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o 6aa38a97f6078160 -+143008 158146 1769779300744375123 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o 24401da0079acee8 -+103047 122949 1769779265550216402 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o 723dc2837e32327 -+100244 122331 1769779264900845028 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o fc72dcf7f588d961 -+141205 161849 1769779304449396952 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o befa52d991bbc505 -+77489 112329 1769779254840146034 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o 393f16726128ff9c -+122950 149013 1769779291572820299 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o 2118f0be2a9f05d5 -+85495 107616 1769779250251234562 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o 5bc41a45aae9cfca -+72520 100244 1769779242844552354 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o ee8c43d97bfa919e -+111525 120761 1769779263347531123 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o 73129a77d6be1af5 -+122331 146199 1769779288769051243 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o 5871c38bcd24fc54 -+21539 49212 1769779191746121679 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o 9ed4b5ec3bc4163f -+5727 29028 1769779171648878635 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o fe4717655bf3416f -+129794 138615 1769779281225715264 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o 2092aaed5cb55df0 -+120762 141757 1769779284368804327 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o 82970c11c70ef85a -+133822 150134 1769779292727633195 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o bcfae75a8e1994f5 -+141757 150152 1769779292779895896 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o 335a707f6e29cc94 -+114077 141205 1769779283772957081 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o b122519d6fefdf91 -+36467 67272 1769779209759062913 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o 2e7d3de737ca40b5 -+150134 167810 1769779310432316627 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o 1d421601dd54f235 -+149013 172630 1769779315196686342 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o f3cfbd69a0e59893 -+1 189 0 /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs b3f027c1a1bba3d8 -+79 6465 1780951857087782377 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o 773c3c512999867f -+71 6826 1780951857454014948 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o eed44188fca53e7b -+83 7092 1780951857719227616 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o 79f3127067d60fdc -+69 13602 1780951864215471771 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o 69cb5ca06fdbdbc3 -+66 19028 1780951869515208367 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o 4f1340d5bc528701 -+75 22575 1780951873159938877 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o 4f37475eb3783bac -+131 22672 1780951873237246621 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o e57c79eb4cef3c5b -+73 24001 1780951874563382769 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o 9dc701c6c359c4a5 -+6466 30624 1780951881205222768 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o d5e08f422a350148 -+7092 31386 1780951881940998305 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o 518a5ee5dcd7801c -+6826 31673 1780951882238176486 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o 330bce627e169a6c -+24002 35304 1780951885876189129 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o f78bc280f8077476 -+87 37368 1780951887825731856 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o db6adbbf804a5a69 -+30624 37914 1780951888517370037 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o 98ee2f8c3645fe2 -+13605 38032 1780951888586088689 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o 912047f4c3b55a21 -+37369 45091 1780951895657330989 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o 3b0514b134edbb7e -+35304 45289 1780951895860324834 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o f3a94ebdf412bd4a -+37914 46078 1780951896636921395 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o f96a485499ae4150 -+22672 49351 1780951899904419454 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o 959fb0d397aed62a -+19028 52897 1780951903350313062 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o f037d6dfed406447 -+45091 54274 1780951904873182891 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o 4b29657e8afa25d -+31387 57309 1780951907847535869 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o 5efbacf70b0d4a33 -+31673 65034 1780951915402861092 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o c93aa042106059 -+67 70170 1780951919832517280 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o a6510cfdbc8b722f -+38033 74070 1780951924502954458 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o b1f2d7169da59fee -+22576 78723 1780951928766839548 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o 5d77ec627655073d -+46078 80570 1780951931010320823 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o 23fdf27fb3ba8977 -+74070 83615 1780951934210560268 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o a9054be074aba942 -+49352 86717 1780951937305884086 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o b71db91fdd143320 -+45289 87979 1780951938346619418 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o ffb44a1e48a6c220 -+52898 92966 1780951943444401600 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o bd52db288ac9e847 -+54274 94109 1780951944603865073 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o 95e97b4eb361e547 -+57309 97460 1780951947954244679 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o b2ccbe3bf4f4b5b1 -+97462 99729 1780951950358018771 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o b3b8acc09b466d57 -+70171 103127 1780951953604829567 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o 4729cab9d97a0cbd -+65036 107123 1780951957563865477 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o 49fb722b6ca55ab4 -+80570 109357 1780951959881376910 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o 37c928d47a2f7dbc -+83615 109811 1780951960335074697 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o b18c12905ac80e71 -+78725 115677 1780951966172436643 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o 9b272c2a30844482 -+87980 116608 1780951967199215523 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o e2d4bbad2b9c9511 -+94109 119180 1780951969749876559 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o 5b82594969acb0e4 -+92968 120759 1780951971303560306 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o c90b4f73aabe182e -+119180 125135 1780951975759051641 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o 9d40ece1b913348a -+86718 125197 1780951975594886965 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o 3bf24118725c1d34 -+99730 127223 1780951977745058474 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o 2651b9b313d4c937 -+109813 129652 1780951980254227906 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o 3dab52724e9848d1 -+125135 133657 1780951984266575003 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o 7ae5932d2d23d990 -+107126 135097 1780951985650923711 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o 1fe1484f36bfe31b -+115679 138882 1780951989487701190 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o 787d86a8e0331357 -+116609 141285 1780951991853130052 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o 5f201eae45f567f9 -+109357 142108 1780951992599501292 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o 69e8a9d8ddd67517 -+103128 143462 1780951993909167362 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o 52dd7177007d85a1 -+138883 151417 1780952002030592193 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o 73e1c2de5dc1bc61 -+120760 153920 1780952004357897669 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o 71eee0acfd4a309 -+125198 173433 1780952023910946270 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o a9127db978fc03bb -+129656 174390 1780952024958519041 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o 7cf2836c3c5837a -+153921 178786 1780952029391481497 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o 4b0afe12c8beef95 -+127223 179940 1780952030378199014 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o 6a3badf262f03634 -+133658 188994 1780952039416242540 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o 6ce91839f29fff47 -+142108 193631 1780952044163995300 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o 86f172491b17d06e -+179942 201332 1780952051840988114 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o 7ebb2862c522a2f5 -+143462 207759 1780952058134331873 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o 7115fffcb42ef6e2 -+141286 208687 1780952059147687280 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o 4661f91cbf82f32f -+151418 212561 1780952062906072191 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o a27cafa10f6adf49 -+174392 212646 1780952063221794356 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o 823177f40d47c582 -+178787 215302 1780952065812438988 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o 196a52fe59080f58 -+135098 222075 1780952072453033328 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o 646f24a80709822c -+201334 232790 1780952083165143562 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o 1339e9f75adef3f0 -+193632 240880 1780952091400607480 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o c1f92f22cadf96ba -+173445 248383 1780952098749890356 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o a14d4e2dc700916e -+188995 282294 1780952132693888870 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o d1d0a8b50412e74d -+282297 285042 1780952134504246492 ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so 1dd0179d40bf9775 -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeCache.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeCache.txt -new file mode 100644 -index 0000000..4123dac ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeCache.txt -@@ -0,0 +1,437 @@ -+# This is the CMakeCache file. -+# For build in directory: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a -+# It was generated by CMake: /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake -+# You can edit this file to change values found and used by cmake. -+# If you do not want to change any of the values, simply exit the editor. -+# If you do want to change a value, simply edit, save, and exit the editor. -+# The syntax for the file is as follows: -+# KEY:TYPE=VALUE -+# KEY is the name of a variable in the cache. -+# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -+# VALUE is the current value for the KEY. -+ -+######################## -+# EXTERNAL cache entries -+######################## -+ -+//No help, variable specified on the command line. -+ANDROID_ABI:UNINITIALIZED=arm64-v8a -+ -+//No help, variable specified on the command line. -+ANDROID_NDK:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006 -+ -+//No help, variable specified on the command line. -+ANDROID_PLATFORM:UNINITIALIZED=android-24 -+ -+//No help, variable specified on the command line. -+ANDROID_STL:UNINITIALIZED=c++_shared -+ -+//No help, variable specified on the command line. -+ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON -+ -+//No help, variable specified on the command line. -+ANDROID_TOOLCHAIN:UNINITIALIZED=clang -+ -+//Path to a program. -+CMAKE_ADDR2LINE:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line -+ -+//No help, variable specified on the command line. -+CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=arm64-v8a -+ -+//No help, variable specified on the command line. -+CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006 -+ -+//Archiver -+CMAKE_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Flags used by the compiler during all build types. -+CMAKE_ASM_FLAGS:STRING= -+ -+//Flags used by the compiler during debug builds. -+CMAKE_ASM_FLAGS_DEBUG:STRING= -+ -+//Flags used by the compiler during release builds. -+CMAKE_ASM_FLAGS_RELEASE:STRING= -+ -+//Choose the type of build, options are: None Debug Release RelWithDebInfo -+// MinSizeRel ... -+CMAKE_BUILD_TYPE:STRING=Debug -+ -+//LLVM archiver -+CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Generate index for LLVM archive -+CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Flags used by the compiler during all build types. -+CMAKE_CXX_FLAGS:STRING= -+ -+//Flags used by the compiler during debug builds. -+CMAKE_CXX_FLAGS_DEBUG:STRING= -+ -+//Flags used by the CXX compiler during MINSIZEREL builds. -+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG -+ -+//Flags used by the compiler during release builds. -+CMAKE_CXX_FLAGS_RELEASE:STRING= -+ -+//Flags used by the CXX compiler during RELWITHDEBINFO builds. -+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG -+ -+//Libraries linked by default with all C++ applications. -+CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm -+ -+//LLVM archiver -+CMAKE_C_COMPILER_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Generate index for LLVM archive -+CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Flags used by the compiler during all build types. -+CMAKE_C_FLAGS:STRING= -+ -+//Flags used by the compiler during debug builds. -+CMAKE_C_FLAGS_DEBUG:STRING= -+ -+//Flags used by the C compiler during MINSIZEREL builds. -+CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG -+ -+//Flags used by the compiler during release builds. -+CMAKE_C_FLAGS_RELEASE:STRING= -+ -+//Flags used by the C compiler during RELWITHDEBINFO builds. -+CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG -+ -+//Libraries linked by default with all C applications. -+CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm -+ -+//Path to a program. -+CMAKE_DLLTOOL:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool -+ -+//Flags used by the linker. -+CMAKE_EXE_LINKER_FLAGS:STRING= -+ -+//Flags used by the linker during DEBUG builds. -+CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= -+ -+//Flags used by the linker during MINSIZEREL builds. -+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= -+ -+//Flags used by the linker during RELEASE builds. -+CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= -+ -+//Flags used by the linker during RELWITHDEBINFO builds. -+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= -+ -+//No help, variable specified on the command line. -+CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON -+ -+//No help, variable specified on the command line. -+CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab -+ -+//Install path prefix, prepended onto install directories. -+CMAKE_INSTALL_PREFIX:PATH=/usr/local -+ -+//No help, variable specified on the command line. -+CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a -+ -+//Path to a program. -+CMAKE_LINKER:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld -+ -+//No help, variable specified on the command line. -+CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja -+ -+//Flags used by the linker during the creation of modules. -+CMAKE_MODULE_LINKER_FLAGS:STRING= -+ -+//Flags used by the linker during the creation of modules during -+// DEBUG builds. -+CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= -+ -+//Flags used by the linker during the creation of modules during -+// MINSIZEREL builds. -+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= -+ -+//Flags used by the linker during the creation of modules during -+// RELEASE builds. -+CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= -+ -+//Flags used by the linker during the creation of modules during -+// RELWITHDEBINFO builds. -+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= -+ -+//Path to a program. -+CMAKE_NM:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm -+ -+//Path to a program. -+CMAKE_OBJCOPY:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy -+ -+//Path to a program. -+CMAKE_OBJDUMP:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump -+ -+//Value Computed by CMake -+CMAKE_PROJECT_DESCRIPTION:STATIC= -+ -+//Value Computed by CMake -+CMAKE_PROJECT_HOMEPAGE_URL:STATIC= -+ -+//Value Computed by CMake -+CMAKE_PROJECT_NAME:STATIC=Reanimated -+ -+//Ranlib -+CMAKE_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Path to a program. -+CMAKE_READELF:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf -+ -+//No help, variable specified on the command line. -+CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a -+ -+//Flags used by the linker during the creation of dll's. -+CMAKE_SHARED_LINKER_FLAGS:STRING= -+ -+//Flags used by the linker during the creation of shared libraries -+// during DEBUG builds. -+CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= -+ -+//Flags used by the linker during the creation of shared libraries -+// during MINSIZEREL builds. -+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= -+ -+//Flags used by the linker during the creation of shared libraries -+// during RELEASE builds. -+CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= -+ -+//Flags used by the linker during the creation of shared libraries -+// during RELWITHDEBINFO builds. -+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= -+ -+//If set, runtime paths are not added when installing shared libraries, -+// but are added when building. -+CMAKE_SKIP_INSTALL_RPATH:BOOL=NO -+ -+//If set, runtime paths are not added when using shared libraries. -+CMAKE_SKIP_RPATH:BOOL=NO -+ -+//Flags used by the linker during the creation of static libraries -+// during all build types. -+CMAKE_STATIC_LINKER_FLAGS:STRING= -+ -+//Flags used by the linker during the creation of static libraries -+// during DEBUG builds. -+CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= -+ -+//Flags used by the linker during the creation of static libraries -+// during MINSIZEREL builds. -+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= -+ -+//Flags used by the linker during the creation of static libraries -+// during RELEASE builds. -+CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= -+ -+//Flags used by the linker during the creation of static libraries -+// during RELWITHDEBINFO builds. -+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= -+ -+//Strip -+CMAKE_STRIP:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip -+ -+//No help, variable specified on the command line. -+CMAKE_SYSTEM_NAME:UNINITIALIZED=Android -+ -+//No help, variable specified on the command line. -+CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 -+ -+//No help, variable specified on the command line. -+CMAKE_TOOLCHAIN_FILE:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake -+ -+//If this value is on, makefiles will be generated without the -+// .SILENT directive, and all commands will be echoed to the console -+// during the make. This is useful for debugging only. With Visual -+// Studio IDE projects all commands are done without /nologo. -+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE -+ -+//No help, variable specified on the command line. -+IS_REANIMATED_EXAMPLE_APP:UNINITIALIZED=false -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_DIR:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=81 -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_WORKLETS_DIR:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-worklets -+ -+//No help, variable specified on the command line. -+REANIMATED_FEATURE_FLAGS:UNINITIALIZED=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] -+ -+//No help, variable specified on the command line. -+REANIMATED_PROFILING:UNINITIALIZED=false -+ -+//No help, variable specified on the command line. -+REANIMATED_VERSION:UNINITIALIZED=4.1.6 -+ -+//The directory containing a CMake configuration file for ReactAndroid. -+ReactAndroid_DIR:PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid -+ -+//Value Computed by CMake -+Reanimated_BINARY_DIR:STATIC=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a -+ -+//Value Computed by CMake -+Reanimated_IS_TOP_LEVEL:STATIC=ON -+ -+//Value Computed by CMake -+Reanimated_SOURCE_DIR:STATIC=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -+ -+//The directory containing a CMake configuration file for fbjni. -+fbjni_DIR:PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni -+ -+//Dependencies for the target -+reanimated_LIB_DEPENDS:STATIC=general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;android;general;worklets;general;ReactAndroid::reactnative; -+ -+ -+######################## -+# INTERNAL cache entries -+######################## -+ -+//ADVANCED property for variable: CMAKE_ADDR2LINE -+CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_AR -+CMAKE_AR-ADVANCED:INTERNAL=1 -+//This is the directory where this CMakeCache.txt was created -+CMAKE_CACHEFILE_DIR:INTERNAL=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a -+//Major version of cmake used to create the current loaded cache -+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -+//Minor version of cmake used to create the current loaded cache -+CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 -+//Patch version of cmake used to create the current loaded cache -+CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 -+//Path to CMake executable. -+CMAKE_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake -+//Path to cpack program executable. -+CMAKE_CPACK_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack -+//Path to ctest program executable. -+CMAKE_CTEST_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest -+//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -+CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -+CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_FLAGS -+CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -+CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -+CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -+CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -+CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES -+CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_COMPILER_AR -+CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -+CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_FLAGS -+CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -+CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -+CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -+CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -+CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES -+CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_DLLTOOL -+CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -+//Path to cache edit program executable. -+CMAKE_EDIT_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake -+//Executable file format -+CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -+CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -+CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -+CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//Name of external makefile project generator. -+CMAKE_EXTRA_GENERATOR:INTERNAL= -+//Name of generator. -+CMAKE_GENERATOR:INTERNAL=Ninja -+//Generator instance identifier. -+CMAKE_GENERATOR_INSTANCE:INTERNAL= -+//Name of generator platform. -+CMAKE_GENERATOR_PLATFORM:INTERNAL= -+//Name of generator toolset. -+CMAKE_GENERATOR_TOOLSET:INTERNAL= -+//Source directory with the top level CMakeLists.txt file for this -+// project -+CMAKE_HOME_DIRECTORY:INTERNAL=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -+//Install .so files without execute permission. -+CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 -+//ADVANCED property for variable: CMAKE_LINKER -+CMAKE_LINKER-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -+CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -+CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -+CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_NM -+CMAKE_NM-ADVANCED:INTERNAL=1 -+//number of local generators -+CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_OBJCOPY -+CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_OBJDUMP -+CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -+//Platform information initialized -+CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_RANLIB -+CMAKE_RANLIB-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_READELF -+CMAKE_READELF-ADVANCED:INTERNAL=1 -+//Path to CMake installation. -+CMAKE_ROOT:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 -+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -+CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -+CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -+CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -+CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SKIP_RPATH -+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -+CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -+CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -+CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STRIP -+CMAKE_STRIP-ADVANCED:INTERNAL=1 -+//uname command -+CMAKE_UNAME:INTERNAL=/usr/bin/uname -+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -new file mode 100644 -index 0000000..b8250ac ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -@@ -0,0 +1,72 @@ -+set(CMAKE_C_COMPILER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") -+set(CMAKE_C_COMPILER_ARG1 "") -+set(CMAKE_C_COMPILER_ID "Clang") -+set(CMAKE_C_COMPILER_VERSION "18.0.2") -+set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -+set(CMAKE_C_COMPILER_WRAPPER "") -+set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") -+set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") -+set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") -+set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -+set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -+set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") -+set(CMAKE_C17_COMPILE_FEATURES "c_std_17") -+set(CMAKE_C23_COMPILE_FEATURES "c_std_23") -+ -+set(CMAKE_C_PLATFORM_ID "Linux") -+set(CMAKE_C_SIMULATE_ID "") -+set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") -+set(CMAKE_C_SIMULATE_VERSION "") -+ -+ -+ -+ -+set(CMAKE_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_C_COMPILER_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_C_COMPILER_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") -+set(CMAKE_MT "") -+set(CMAKE_COMPILER_IS_GNUCC ) -+set(CMAKE_C_COMPILER_LOADED 1) -+set(CMAKE_C_COMPILER_WORKS TRUE) -+set(CMAKE_C_ABI_COMPILED TRUE) -+ -+set(CMAKE_C_COMPILER_ENV_VAR "CC") -+ -+set(CMAKE_C_COMPILER_ID_RUN 1) -+set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -+set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -+set(CMAKE_C_LINKER_PREFERENCE 10) -+ -+# Save compiler ABI information. -+set(CMAKE_C_SIZEOF_DATA_PTR "8") -+set(CMAKE_C_COMPILER_ABI "ELF") -+set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") -+set(CMAKE_C_LIBRARY_ARCHITECTURE "") -+ -+if(CMAKE_C_SIZEOF_DATA_PTR) -+ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -+endif() -+ -+if(CMAKE_C_COMPILER_ABI) -+ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -+endif() -+ -+if(CMAKE_C_LIBRARY_ARCHITECTURE) -+ set(CMAKE_LIBRARY_ARCHITECTURE "") -+endif() -+ -+set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -+if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) -+ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -+endif() -+ -+ -+ -+ -+ -+set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") -+set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") -+set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") -+set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -new file mode 100644 -index 0000000..11d14e7 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -@@ -0,0 +1,83 @@ -+set(CMAKE_CXX_COMPILER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") -+set(CMAKE_CXX_COMPILER_ARG1 "") -+set(CMAKE_CXX_COMPILER_ID "Clang") -+set(CMAKE_CXX_COMPILER_VERSION "18.0.2") -+set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -+set(CMAKE_CXX_COMPILER_WRAPPER "") -+set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -+set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -+set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -+set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -+set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -+set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -+set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -+set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -+set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") -+ -+set(CMAKE_CXX_PLATFORM_ID "Linux") -+set(CMAKE_CXX_SIMULATE_ID "") -+set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -+set(CMAKE_CXX_SIMULATE_VERSION "") -+ -+ -+ -+ -+set(CMAKE_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_CXX_COMPILER_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_CXX_COMPILER_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") -+set(CMAKE_MT "") -+set(CMAKE_COMPILER_IS_GNUCXX ) -+set(CMAKE_CXX_COMPILER_LOADED 1) -+set(CMAKE_CXX_COMPILER_WORKS TRUE) -+set(CMAKE_CXX_ABI_COMPILED TRUE) -+ -+set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") -+ -+set(CMAKE_CXX_COMPILER_ID_RUN 1) -+set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) -+set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) -+ -+foreach (lang C OBJC OBJCXX) -+ if (CMAKE_${lang}_COMPILER_ID_RUN) -+ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) -+ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) -+ endforeach() -+ endif() -+endforeach() -+ -+set(CMAKE_CXX_LINKER_PREFERENCE 30) -+set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -+ -+# Save compiler ABI information. -+set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -+set(CMAKE_CXX_COMPILER_ABI "ELF") -+set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -+set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") -+ -+if(CMAKE_CXX_SIZEOF_DATA_PTR) -+ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -+endif() -+ -+if(CMAKE_CXX_COMPILER_ABI) -+ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -+endif() -+ -+if(CMAKE_CXX_LIBRARY_ARCHITECTURE) -+ set(CMAKE_LIBRARY_ARCHITECTURE "") -+endif() -+ -+set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -+if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) -+ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -+endif() -+ -+ -+ -+ -+ -+set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") -+set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") -+set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") -+set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -new file mode 100755 -index 0000000..7473130 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -new file mode 100755 -index 0000000..a6f3e55 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -new file mode 100644 -index 0000000..7dc43fc ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -@@ -0,0 +1,15 @@ -+set(CMAKE_HOST_SYSTEM "Darwin-25.2.0") -+set(CMAKE_HOST_SYSTEM_NAME "Darwin") -+set(CMAKE_HOST_SYSTEM_VERSION "25.2.0") -+set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") -+ -+include("/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") -+ -+set(CMAKE_SYSTEM "Android-1") -+set(CMAKE_SYSTEM_NAME "Android") -+set(CMAKE_SYSTEM_VERSION "1") -+set(CMAKE_SYSTEM_PROCESSOR "aarch64") -+ -+set(CMAKE_CROSSCOMPILING "TRUE") -+ -+set(CMAKE_SYSTEM_LOADED 1) -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -new file mode 100644 -index 0000000..41b99d7 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -@@ -0,0 +1,803 @@ -+#ifdef __cplusplus -+# error "A C++ compiler has been selected for C." -+#endif -+ -+#if defined(__18CXX) -+# define ID_VOID_MAIN -+#endif -+#if defined(__CLASSIC_C__) -+/* cv-qualifiers did not exist in K&R C */ -+# define const -+# define volatile -+#endif -+ -+#if !defined(__has_include) -+/* If the compiler does not have __has_include, pretend the answer is -+ always no. */ -+# define __has_include(x) 0 -+#endif -+ -+ -+/* Version number components: V=Version, R=Revision, P=Patch -+ Version date components: YYYY=Year, MM=Month, DD=Day */ -+ -+#if defined(__INTEL_COMPILER) || defined(__ICC) -+# define COMPILER_ID "Intel" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# if defined(__GNUC__) -+# define SIMULATE_ID "GNU" -+# endif -+ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, -+ except that a few beta releases use the old format with V=2021. */ -+# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -+# if defined(__INTEL_COMPILER_UPDATE) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -+# else -+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -+# endif -+# else -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) -+ /* The third version component from --version is an update index, -+ but no macro is provided for it. */ -+# define COMPILER_VERSION_PATCH DEC(0) -+# endif -+# if defined(__INTEL_COMPILER_BUILD_DATE) -+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -+# endif -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+# if defined(__GNUC__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -+# elif defined(__GNUG__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -+# endif -+# if defined(__GNUC_MINOR__) -+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -+# endif -+# if defined(__GNUC_PATCHLEVEL__) -+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+# endif -+ -+#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -+# define COMPILER_ID "IntelLLVM" -+#if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+#endif -+#if defined(__GNUC__) -+# define SIMULATE_ID "GNU" -+#endif -+/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and -+ * later. Look for 6 digit vs. 8 digit version number to decide encoding. -+ * VVVV is no smaller than the current year when a version is released. -+ */ -+#if __INTEL_LLVM_COMPILER < 1000000L -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -+#else -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -+#endif -+#if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+#endif -+#if defined(__GNUC__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -+#elif defined(__GNUG__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -+#endif -+#if defined(__GNUC_MINOR__) -+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -+#endif -+#if defined(__GNUC_PATCHLEVEL__) -+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+#endif -+ -+#elif defined(__PATHCC__) -+# define COMPILER_ID "PathScale" -+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -+# if defined(__PATHCC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -+# endif -+ -+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -+# define COMPILER_ID "Embarcadero" -+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) -+ -+#elif defined(__BORLANDC__) -+# define COMPILER_ID "Borland" -+ /* __BORLANDC__ = 0xVRR */ -+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) -+ -+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -+# define COMPILER_ID "Watcom" -+ /* __WATCOMC__ = VVRR */ -+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -+# if (__WATCOMC__ % 10) > 0 -+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -+# endif -+ -+#elif defined(__WATCOMC__) -+# define COMPILER_ID "OpenWatcom" -+ /* __WATCOMC__ = VVRP + 1100 */ -+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -+# if (__WATCOMC__ % 10) > 0 -+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -+# endif -+ -+#elif defined(__SUNPRO_C) -+# define COMPILER_ID "SunPro" -+# if __SUNPRO_C >= 0x5100 -+ /* __SUNPRO_C = 0xVRRP */ -+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -+# else -+ /* __SUNPRO_CC = 0xVRP */ -+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -+# endif -+ -+#elif defined(__HP_cc) -+# define COMPILER_ID "HP" -+ /* __HP_cc = VVRRPP */ -+# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -+# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -+# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) -+ -+#elif defined(__DECC) -+# define COMPILER_ID "Compaq" -+ /* __DECC_VER = VVRRTPPPP */ -+# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -+# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -+# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) -+ -+#elif defined(__IBMC__) && defined(__COMPILER_VER__) -+# define COMPILER_ID "zOS" -+ /* __IBMC__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) -+ -+#elif defined(__ibmxl__) && defined(__clang__) -+# define COMPILER_ID "XLClang" -+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) -+ -+ -+#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -+# define COMPILER_ID "XL" -+ /* __IBMC__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) -+ -+#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -+# define COMPILER_ID "VisualAge" -+ /* __IBMC__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) -+ -+#elif defined(__NVCOMPILER) -+# define COMPILER_ID "NVHPC" -+# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -+# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -+# if defined(__NVCOMPILER_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -+# endif -+ -+#elif defined(__PGI) -+# define COMPILER_ID "PGI" -+# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -+# if defined(__PGIC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -+# endif -+ -+#elif defined(_CRAYC) -+# define COMPILER_ID "Cray" -+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) -+ -+#elif defined(__TI_COMPILER_VERSION__) -+# define COMPILER_ID "TI" -+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) -+ -+#elif defined(__CLANG_FUJITSU) -+# define COMPILER_ID "FujitsuClang" -+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -+# define COMPILER_VERSION_INTERNAL_STR __clang_version__ -+ -+ -+#elif defined(__FUJITSU) -+# define COMPILER_ID "Fujitsu" -+# if defined(__FCC_version__) -+# define COMPILER_VERSION __FCC_version__ -+# elif defined(__FCC_major__) -+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -+# endif -+# if defined(__fcc_version) -+# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -+# elif defined(__FCC_VERSION) -+# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -+# endif -+ -+ -+#elif defined(__ghs__) -+# define COMPILER_ID "GHS" -+/* __GHS_VERSION_NUMBER = VVVVRP */ -+# ifdef __GHS_VERSION_NUMBER -+# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -+# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -+# endif -+ -+#elif defined(__TINYC__) -+# define COMPILER_ID "TinyCC" -+ -+#elif defined(__BCC__) -+# define COMPILER_ID "Bruce" -+ -+#elif defined(__SCO_VERSION__) -+# define COMPILER_ID "SCO" -+ -+#elif defined(__ARMCC_VERSION) && !defined(__clang__) -+# define COMPILER_ID "ARMCC" -+#if __ARMCC_VERSION >= 1000000 -+ /* __ARMCC_VERSION = VRRPPPP */ -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -+#else -+ /* __ARMCC_VERSION = VRPPPP */ -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -+#endif -+ -+ -+#elif defined(__clang__) && defined(__apple_build_version__) -+# define COMPILER_ID "AppleClang" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -+# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) -+ -+#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -+# define COMPILER_ID "ARMClang" -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -+# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) -+ -+#elif defined(__clang__) -+# define COMPILER_ID "Clang" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -+# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+ -+#elif defined(__GNUC__) -+# define COMPILER_ID "GNU" -+# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -+# if defined(__GNUC_MINOR__) -+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -+# endif -+# if defined(__GNUC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+# endif -+ -+#elif defined(_MSC_VER) -+# define COMPILER_ID "MSVC" -+ /* _MSC_VER = VVRR */ -+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -+# if defined(_MSC_FULL_VER) -+# if _MSC_VER >= 1400 -+ /* _MSC_FULL_VER = VVRRPPPPP */ -+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -+# else -+ /* _MSC_FULL_VER = VVRRPPPP */ -+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -+# endif -+# endif -+# if defined(_MSC_BUILD) -+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -+# endif -+ -+#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -+# define COMPILER_ID "ADSP" -+#if defined(__VISUALDSPVERSION__) -+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -+# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -+# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -+# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -+#endif -+ -+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -+# define COMPILER_ID "IAR" -+# if defined(__VER__) && defined(__ICCARM__) -+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -+# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -+# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -+# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -+# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -+# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -+# endif -+ -+#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -+# define COMPILER_ID "SDCC" -+# if defined(__SDCC_VERSION_MAJOR) -+# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -+# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -+# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -+# else -+ /* SDCC = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -+# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -+# endif -+ -+ -+/* These compilers are either not known or too old to define an -+ identification macro. Try to identify the platform and guess that -+ it is the native compiler. */ -+#elif defined(__hpux) || defined(__hpua) -+# define COMPILER_ID "HP" -+ -+#else /* unknown compiler */ -+# define COMPILER_ID "" -+#endif -+ -+/* Construct the string literal in pieces to prevent the source from -+ getting matched. Store it in a pointer rather than an array -+ because some compilers will just produce instructions to fill the -+ array rather than assigning a pointer to a static array. */ -+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -+#ifdef SIMULATE_ID -+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -+#endif -+ -+#ifdef __QNXNTO__ -+char const* qnxnto = "INFO" ":" "qnxnto[]"; -+#endif -+ -+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -+#endif -+ -+#define STRINGIFY_HELPER(X) #X -+#define STRINGIFY(X) STRINGIFY_HELPER(X) -+ -+/* Identify known platforms by name. */ -+#if defined(__linux) || defined(__linux__) || defined(linux) -+# define PLATFORM_ID "Linux" -+ -+#elif defined(__MSYS__) -+# define PLATFORM_ID "MSYS" -+ -+#elif defined(__CYGWIN__) -+# define PLATFORM_ID "Cygwin" -+ -+#elif defined(__MINGW32__) -+# define PLATFORM_ID "MinGW" -+ -+#elif defined(__APPLE__) -+# define PLATFORM_ID "Darwin" -+ -+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -+# define PLATFORM_ID "Windows" -+ -+#elif defined(__FreeBSD__) || defined(__FreeBSD) -+# define PLATFORM_ID "FreeBSD" -+ -+#elif defined(__NetBSD__) || defined(__NetBSD) -+# define PLATFORM_ID "NetBSD" -+ -+#elif defined(__OpenBSD__) || defined(__OPENBSD) -+# define PLATFORM_ID "OpenBSD" -+ -+#elif defined(__sun) || defined(sun) -+# define PLATFORM_ID "SunOS" -+ -+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -+# define PLATFORM_ID "AIX" -+ -+#elif defined(__hpux) || defined(__hpux__) -+# define PLATFORM_ID "HP-UX" -+ -+#elif defined(__HAIKU__) -+# define PLATFORM_ID "Haiku" -+ -+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -+# define PLATFORM_ID "BeOS" -+ -+#elif defined(__QNX__) || defined(__QNXNTO__) -+# define PLATFORM_ID "QNX" -+ -+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -+# define PLATFORM_ID "Tru64" -+ -+#elif defined(__riscos) || defined(__riscos__) -+# define PLATFORM_ID "RISCos" -+ -+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -+# define PLATFORM_ID "SINIX" -+ -+#elif defined(__UNIX_SV__) -+# define PLATFORM_ID "UNIX_SV" -+ -+#elif defined(__bsdos__) -+# define PLATFORM_ID "BSDOS" -+ -+#elif defined(_MPRAS) || defined(MPRAS) -+# define PLATFORM_ID "MP-RAS" -+ -+#elif defined(__osf) || defined(__osf__) -+# define PLATFORM_ID "OSF1" -+ -+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -+# define PLATFORM_ID "SCO_SV" -+ -+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -+# define PLATFORM_ID "ULTRIX" -+ -+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -+# define PLATFORM_ID "Xenix" -+ -+#elif defined(__WATCOMC__) -+# if defined(__LINUX__) -+# define PLATFORM_ID "Linux" -+ -+# elif defined(__DOS__) -+# define PLATFORM_ID "DOS" -+ -+# elif defined(__OS2__) -+# define PLATFORM_ID "OS2" -+ -+# elif defined(__WINDOWS__) -+# define PLATFORM_ID "Windows3x" -+ -+# elif defined(__VXWORKS__) -+# define PLATFORM_ID "VxWorks" -+ -+# else /* unknown platform */ -+# define PLATFORM_ID -+# endif -+ -+#elif defined(__INTEGRITY) -+# if defined(INT_178B) -+# define PLATFORM_ID "Integrity178" -+ -+# else /* regular Integrity */ -+# define PLATFORM_ID "Integrity" -+# endif -+ -+#else /* unknown platform */ -+# define PLATFORM_ID -+ -+#endif -+ -+/* For windows compilers MSVC and Intel we can determine -+ the architecture of the compiler being used. This is because -+ the compilers do not have flags that can change the architecture, -+ but rather depend on which compiler is being used -+*/ -+#if defined(_WIN32) && defined(_MSC_VER) -+# if defined(_M_IA64) -+# define ARCHITECTURE_ID "IA64" -+ -+# elif defined(_M_ARM64EC) -+# define ARCHITECTURE_ID "ARM64EC" -+ -+# elif defined(_M_X64) || defined(_M_AMD64) -+# define ARCHITECTURE_ID "x64" -+ -+# elif defined(_M_IX86) -+# define ARCHITECTURE_ID "X86" -+ -+# elif defined(_M_ARM64) -+# define ARCHITECTURE_ID "ARM64" -+ -+# elif defined(_M_ARM) -+# if _M_ARM == 4 -+# define ARCHITECTURE_ID "ARMV4I" -+# elif _M_ARM == 5 -+# define ARCHITECTURE_ID "ARMV5I" -+# else -+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -+# endif -+ -+# elif defined(_M_MIPS) -+# define ARCHITECTURE_ID "MIPS" -+ -+# elif defined(_M_SH) -+# define ARCHITECTURE_ID "SHx" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__WATCOMC__) -+# if defined(_M_I86) -+# define ARCHITECTURE_ID "I86" -+ -+# elif defined(_M_IX86) -+# define ARCHITECTURE_ID "X86" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -+# if defined(__ICCARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__ICCRX__) -+# define ARCHITECTURE_ID "RX" -+ -+# elif defined(__ICCRH850__) -+# define ARCHITECTURE_ID "RH850" -+ -+# elif defined(__ICCRL78__) -+# define ARCHITECTURE_ID "RL78" -+ -+# elif defined(__ICCRISCV__) -+# define ARCHITECTURE_ID "RISCV" -+ -+# elif defined(__ICCAVR__) -+# define ARCHITECTURE_ID "AVR" -+ -+# elif defined(__ICC430__) -+# define ARCHITECTURE_ID "MSP430" -+ -+# elif defined(__ICCV850__) -+# define ARCHITECTURE_ID "V850" -+ -+# elif defined(__ICC8051__) -+# define ARCHITECTURE_ID "8051" -+ -+# elif defined(__ICCSTM8__) -+# define ARCHITECTURE_ID "STM8" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__ghs__) -+# if defined(__PPC64__) -+# define ARCHITECTURE_ID "PPC64" -+ -+# elif defined(__ppc__) -+# define ARCHITECTURE_ID "PPC" -+ -+# elif defined(__ARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__x86_64__) -+# define ARCHITECTURE_ID "x64" -+ -+# elif defined(__i386__) -+# define ARCHITECTURE_ID "X86" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__TI_COMPILER_VERSION__) -+# if defined(__TI_ARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__MSP430__) -+# define ARCHITECTURE_ID "MSP430" -+ -+# elif defined(__TMS320C28XX__) -+# define ARCHITECTURE_ID "TMS320C28x" -+ -+# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -+# define ARCHITECTURE_ID "TMS320C6x" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#else -+# define ARCHITECTURE_ID -+#endif -+ -+/* Convert integer to decimal digit literals. */ -+#define DEC(n) \ -+ ('0' + (((n) / 10000000)%10)), \ -+ ('0' + (((n) / 1000000)%10)), \ -+ ('0' + (((n) / 100000)%10)), \ -+ ('0' + (((n) / 10000)%10)), \ -+ ('0' + (((n) / 1000)%10)), \ -+ ('0' + (((n) / 100)%10)), \ -+ ('0' + (((n) / 10)%10)), \ -+ ('0' + ((n) % 10)) -+ -+/* Convert integer to hex digit literals. */ -+#define HEX(n) \ -+ ('0' + ((n)>>28 & 0xF)), \ -+ ('0' + ((n)>>24 & 0xF)), \ -+ ('0' + ((n)>>20 & 0xF)), \ -+ ('0' + ((n)>>16 & 0xF)), \ -+ ('0' + ((n)>>12 & 0xF)), \ -+ ('0' + ((n)>>8 & 0xF)), \ -+ ('0' + ((n)>>4 & 0xF)), \ -+ ('0' + ((n) & 0xF)) -+ -+/* Construct a string literal encoding the version number. */ -+#ifdef COMPILER_VERSION -+char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; -+ -+/* Construct a string literal encoding the version number components. */ -+#elif defined(COMPILER_VERSION_MAJOR) -+char const info_version[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', -+ COMPILER_VERSION_MAJOR, -+# ifdef COMPILER_VERSION_MINOR -+ '.', COMPILER_VERSION_MINOR, -+# ifdef COMPILER_VERSION_PATCH -+ '.', COMPILER_VERSION_PATCH, -+# ifdef COMPILER_VERSION_TWEAK -+ '.', COMPILER_VERSION_TWEAK, -+# endif -+# endif -+# endif -+ ']','\0'}; -+#endif -+ -+/* Construct a string literal encoding the internal version number. */ -+#ifdef COMPILER_VERSION_INTERNAL -+char const info_version_internal[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', -+ 'i','n','t','e','r','n','a','l','[', -+ COMPILER_VERSION_INTERNAL,']','\0'}; -+#elif defined(COMPILER_VERSION_INTERNAL_STR) -+char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -+#endif -+ -+/* Construct a string literal encoding the version number components. */ -+#ifdef SIMULATE_VERSION_MAJOR -+char const info_simulate_version[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', -+ SIMULATE_VERSION_MAJOR, -+# ifdef SIMULATE_VERSION_MINOR -+ '.', SIMULATE_VERSION_MINOR, -+# ifdef SIMULATE_VERSION_PATCH -+ '.', SIMULATE_VERSION_PATCH, -+# ifdef SIMULATE_VERSION_TWEAK -+ '.', SIMULATE_VERSION_TWEAK, -+# endif -+# endif -+# endif -+ ']','\0'}; -+#endif -+ -+/* Construct the string literal in pieces to prevent the source from -+ getting matched. Store it in a pointer rather than an array -+ because some compilers will just produce instructions to fill the -+ array rather than assigning a pointer to a static array. */ -+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; -+ -+ -+ -+#if !defined(__STDC__) && !defined(__clang__) -+# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -+# define C_VERSION "90" -+# else -+# define C_VERSION -+# endif -+#elif __STDC_VERSION__ > 201710L -+# define C_VERSION "23" -+#elif __STDC_VERSION__ >= 201710L -+# define C_VERSION "17" -+#elif __STDC_VERSION__ >= 201000L -+# define C_VERSION "11" -+#elif __STDC_VERSION__ >= 199901L -+# define C_VERSION "99" -+#else -+# define C_VERSION "90" -+#endif -+const char* info_language_standard_default = -+ "INFO" ":" "standard_default[" C_VERSION "]"; -+ -+const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -+/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ -+#if (defined(__clang__) || defined(__GNUC__) || \ -+ defined(__TI_COMPILER_VERSION__)) && \ -+ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) -+ "ON" -+#else -+ "OFF" -+#endif -+"]"; -+ -+/*--------------------------------------------------------------------------*/ -+ -+#ifdef ID_VOID_MAIN -+void main() {} -+#else -+# if defined(__CLASSIC_C__) -+int main(argc, argv) int argc; char *argv[]; -+# else -+int main(int argc, char* argv[]) -+# endif -+{ -+ int require = 0; -+ require += info_compiler[argc]; -+ require += info_platform[argc]; -+ require += info_arch[argc]; -+#ifdef COMPILER_VERSION_MAJOR -+ require += info_version[argc]; -+#endif -+#ifdef COMPILER_VERSION_INTERNAL -+ require += info_version_internal[argc]; -+#endif -+#ifdef SIMULATE_ID -+ require += info_simulate[argc]; -+#endif -+#ifdef SIMULATE_VERSION_MAJOR -+ require += info_simulate_version[argc]; -+#endif -+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -+ require += info_cray[argc]; -+#endif -+ require += info_language_standard_default[argc]; -+ require += info_language_extensions_default[argc]; -+ (void)argv; -+ return require; -+} -+#endif -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -new file mode 100644 -index 0000000..63698c1 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -new file mode 100644 -index 0000000..25c62a8 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -@@ -0,0 +1,791 @@ -+/* This source file must have a .cpp extension so that all C++ compilers -+ recognize the extension without flags. Borland does not know .cxx for -+ example. */ -+#ifndef __cplusplus -+# error "A C compiler has been selected for C++." -+#endif -+ -+#if !defined(__has_include) -+/* If the compiler does not have __has_include, pretend the answer is -+ always no. */ -+# define __has_include(x) 0 -+#endif -+ -+ -+/* Version number components: V=Version, R=Revision, P=Patch -+ Version date components: YYYY=Year, MM=Month, DD=Day */ -+ -+#if defined(__COMO__) -+# define COMPILER_ID "Comeau" -+ /* __COMO_VERSION__ = VRR */ -+# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) -+# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) -+ -+#elif defined(__INTEL_COMPILER) || defined(__ICC) -+# define COMPILER_ID "Intel" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# if defined(__GNUC__) -+# define SIMULATE_ID "GNU" -+# endif -+ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, -+ except that a few beta releases use the old format with V=2021. */ -+# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -+# if defined(__INTEL_COMPILER_UPDATE) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -+# else -+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -+# endif -+# else -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) -+ /* The third version component from --version is an update index, -+ but no macro is provided for it. */ -+# define COMPILER_VERSION_PATCH DEC(0) -+# endif -+# if defined(__INTEL_COMPILER_BUILD_DATE) -+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -+# endif -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+# if defined(__GNUC__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -+# elif defined(__GNUG__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -+# endif -+# if defined(__GNUC_MINOR__) -+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -+# endif -+# if defined(__GNUC_PATCHLEVEL__) -+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+# endif -+ -+#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -+# define COMPILER_ID "IntelLLVM" -+#if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+#endif -+#if defined(__GNUC__) -+# define SIMULATE_ID "GNU" -+#endif -+/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and -+ * later. Look for 6 digit vs. 8 digit version number to decide encoding. -+ * VVVV is no smaller than the current year when a version is released. -+ */ -+#if __INTEL_LLVM_COMPILER < 1000000L -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -+#else -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -+#endif -+#if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+#endif -+#if defined(__GNUC__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -+#elif defined(__GNUG__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -+#endif -+#if defined(__GNUC_MINOR__) -+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -+#endif -+#if defined(__GNUC_PATCHLEVEL__) -+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+#endif -+ -+#elif defined(__PATHCC__) -+# define COMPILER_ID "PathScale" -+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -+# if defined(__PATHCC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -+# endif -+ -+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -+# define COMPILER_ID "Embarcadero" -+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) -+ -+#elif defined(__BORLANDC__) -+# define COMPILER_ID "Borland" -+ /* __BORLANDC__ = 0xVRR */ -+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) -+ -+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -+# define COMPILER_ID "Watcom" -+ /* __WATCOMC__ = VVRR */ -+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -+# if (__WATCOMC__ % 10) > 0 -+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -+# endif -+ -+#elif defined(__WATCOMC__) -+# define COMPILER_ID "OpenWatcom" -+ /* __WATCOMC__ = VVRP + 1100 */ -+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -+# if (__WATCOMC__ % 10) > 0 -+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -+# endif -+ -+#elif defined(__SUNPRO_CC) -+# define COMPILER_ID "SunPro" -+# if __SUNPRO_CC >= 0x5100 -+ /* __SUNPRO_CC = 0xVRRP */ -+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -+# else -+ /* __SUNPRO_CC = 0xVRP */ -+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -+# endif -+ -+#elif defined(__HP_aCC) -+# define COMPILER_ID "HP" -+ /* __HP_aCC = VVRRPP */ -+# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -+# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -+# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) -+ -+#elif defined(__DECCXX) -+# define COMPILER_ID "Compaq" -+ /* __DECCXX_VER = VVRRTPPPP */ -+# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -+# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -+# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) -+ -+#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -+# define COMPILER_ID "zOS" -+ /* __IBMCPP__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) -+ -+#elif defined(__ibmxl__) && defined(__clang__) -+# define COMPILER_ID "XLClang" -+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) -+ -+ -+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -+# define COMPILER_ID "XL" -+ /* __IBMCPP__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) -+ -+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -+# define COMPILER_ID "VisualAge" -+ /* __IBMCPP__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) -+ -+#elif defined(__NVCOMPILER) -+# define COMPILER_ID "NVHPC" -+# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -+# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -+# if defined(__NVCOMPILER_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -+# endif -+ -+#elif defined(__PGI) -+# define COMPILER_ID "PGI" -+# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -+# if defined(__PGIC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -+# endif -+ -+#elif defined(_CRAYC) -+# define COMPILER_ID "Cray" -+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) -+ -+#elif defined(__TI_COMPILER_VERSION__) -+# define COMPILER_ID "TI" -+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) -+ -+#elif defined(__CLANG_FUJITSU) -+# define COMPILER_ID "FujitsuClang" -+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -+# define COMPILER_VERSION_INTERNAL_STR __clang_version__ -+ -+ -+#elif defined(__FUJITSU) -+# define COMPILER_ID "Fujitsu" -+# if defined(__FCC_version__) -+# define COMPILER_VERSION __FCC_version__ -+# elif defined(__FCC_major__) -+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -+# endif -+# if defined(__fcc_version) -+# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -+# elif defined(__FCC_VERSION) -+# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -+# endif -+ -+ -+#elif defined(__ghs__) -+# define COMPILER_ID "GHS" -+/* __GHS_VERSION_NUMBER = VVVVRP */ -+# ifdef __GHS_VERSION_NUMBER -+# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -+# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -+# endif -+ -+#elif defined(__SCO_VERSION__) -+# define COMPILER_ID "SCO" -+ -+#elif defined(__ARMCC_VERSION) && !defined(__clang__) -+# define COMPILER_ID "ARMCC" -+#if __ARMCC_VERSION >= 1000000 -+ /* __ARMCC_VERSION = VRRPPPP */ -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -+#else -+ /* __ARMCC_VERSION = VRPPPP */ -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -+#endif -+ -+ -+#elif defined(__clang__) && defined(__apple_build_version__) -+# define COMPILER_ID "AppleClang" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -+# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) -+ -+#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -+# define COMPILER_ID "ARMClang" -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -+# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) -+ -+#elif defined(__clang__) -+# define COMPILER_ID "Clang" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -+# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+ -+#elif defined(__GNUC__) || defined(__GNUG__) -+# define COMPILER_ID "GNU" -+# if defined(__GNUC__) -+# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -+# else -+# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -+# endif -+# if defined(__GNUC_MINOR__) -+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -+# endif -+# if defined(__GNUC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+# endif -+ -+#elif defined(_MSC_VER) -+# define COMPILER_ID "MSVC" -+ /* _MSC_VER = VVRR */ -+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -+# if defined(_MSC_FULL_VER) -+# if _MSC_VER >= 1400 -+ /* _MSC_FULL_VER = VVRRPPPPP */ -+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -+# else -+ /* _MSC_FULL_VER = VVRRPPPP */ -+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -+# endif -+# endif -+# if defined(_MSC_BUILD) -+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -+# endif -+ -+#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -+# define COMPILER_ID "ADSP" -+#if defined(__VISUALDSPVERSION__) -+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -+# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -+# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -+# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -+#endif -+ -+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -+# define COMPILER_ID "IAR" -+# if defined(__VER__) && defined(__ICCARM__) -+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -+# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -+# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -+# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -+# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -+# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -+# endif -+ -+ -+/* These compilers are either not known or too old to define an -+ identification macro. Try to identify the platform and guess that -+ it is the native compiler. */ -+#elif defined(__hpux) || defined(__hpua) -+# define COMPILER_ID "HP" -+ -+#else /* unknown compiler */ -+# define COMPILER_ID "" -+#endif -+ -+/* Construct the string literal in pieces to prevent the source from -+ getting matched. Store it in a pointer rather than an array -+ because some compilers will just produce instructions to fill the -+ array rather than assigning a pointer to a static array. */ -+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -+#ifdef SIMULATE_ID -+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -+#endif -+ -+#ifdef __QNXNTO__ -+char const* qnxnto = "INFO" ":" "qnxnto[]"; -+#endif -+ -+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -+#endif -+ -+#define STRINGIFY_HELPER(X) #X -+#define STRINGIFY(X) STRINGIFY_HELPER(X) -+ -+/* Identify known platforms by name. */ -+#if defined(__linux) || defined(__linux__) || defined(linux) -+# define PLATFORM_ID "Linux" -+ -+#elif defined(__MSYS__) -+# define PLATFORM_ID "MSYS" -+ -+#elif defined(__CYGWIN__) -+# define PLATFORM_ID "Cygwin" -+ -+#elif defined(__MINGW32__) -+# define PLATFORM_ID "MinGW" -+ -+#elif defined(__APPLE__) -+# define PLATFORM_ID "Darwin" -+ -+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -+# define PLATFORM_ID "Windows" -+ -+#elif defined(__FreeBSD__) || defined(__FreeBSD) -+# define PLATFORM_ID "FreeBSD" -+ -+#elif defined(__NetBSD__) || defined(__NetBSD) -+# define PLATFORM_ID "NetBSD" -+ -+#elif defined(__OpenBSD__) || defined(__OPENBSD) -+# define PLATFORM_ID "OpenBSD" -+ -+#elif defined(__sun) || defined(sun) -+# define PLATFORM_ID "SunOS" -+ -+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -+# define PLATFORM_ID "AIX" -+ -+#elif defined(__hpux) || defined(__hpux__) -+# define PLATFORM_ID "HP-UX" -+ -+#elif defined(__HAIKU__) -+# define PLATFORM_ID "Haiku" -+ -+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -+# define PLATFORM_ID "BeOS" -+ -+#elif defined(__QNX__) || defined(__QNXNTO__) -+# define PLATFORM_ID "QNX" -+ -+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -+# define PLATFORM_ID "Tru64" -+ -+#elif defined(__riscos) || defined(__riscos__) -+# define PLATFORM_ID "RISCos" -+ -+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -+# define PLATFORM_ID "SINIX" -+ -+#elif defined(__UNIX_SV__) -+# define PLATFORM_ID "UNIX_SV" -+ -+#elif defined(__bsdos__) -+# define PLATFORM_ID "BSDOS" -+ -+#elif defined(_MPRAS) || defined(MPRAS) -+# define PLATFORM_ID "MP-RAS" -+ -+#elif defined(__osf) || defined(__osf__) -+# define PLATFORM_ID "OSF1" -+ -+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -+# define PLATFORM_ID "SCO_SV" -+ -+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -+# define PLATFORM_ID "ULTRIX" -+ -+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -+# define PLATFORM_ID "Xenix" -+ -+#elif defined(__WATCOMC__) -+# if defined(__LINUX__) -+# define PLATFORM_ID "Linux" -+ -+# elif defined(__DOS__) -+# define PLATFORM_ID "DOS" -+ -+# elif defined(__OS2__) -+# define PLATFORM_ID "OS2" -+ -+# elif defined(__WINDOWS__) -+# define PLATFORM_ID "Windows3x" -+ -+# elif defined(__VXWORKS__) -+# define PLATFORM_ID "VxWorks" -+ -+# else /* unknown platform */ -+# define PLATFORM_ID -+# endif -+ -+#elif defined(__INTEGRITY) -+# if defined(INT_178B) -+# define PLATFORM_ID "Integrity178" -+ -+# else /* regular Integrity */ -+# define PLATFORM_ID "Integrity" -+# endif -+ -+#else /* unknown platform */ -+# define PLATFORM_ID -+ -+#endif -+ -+/* For windows compilers MSVC and Intel we can determine -+ the architecture of the compiler being used. This is because -+ the compilers do not have flags that can change the architecture, -+ but rather depend on which compiler is being used -+*/ -+#if defined(_WIN32) && defined(_MSC_VER) -+# if defined(_M_IA64) -+# define ARCHITECTURE_ID "IA64" -+ -+# elif defined(_M_ARM64EC) -+# define ARCHITECTURE_ID "ARM64EC" -+ -+# elif defined(_M_X64) || defined(_M_AMD64) -+# define ARCHITECTURE_ID "x64" -+ -+# elif defined(_M_IX86) -+# define ARCHITECTURE_ID "X86" -+ -+# elif defined(_M_ARM64) -+# define ARCHITECTURE_ID "ARM64" -+ -+# elif defined(_M_ARM) -+# if _M_ARM == 4 -+# define ARCHITECTURE_ID "ARMV4I" -+# elif _M_ARM == 5 -+# define ARCHITECTURE_ID "ARMV5I" -+# else -+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -+# endif -+ -+# elif defined(_M_MIPS) -+# define ARCHITECTURE_ID "MIPS" -+ -+# elif defined(_M_SH) -+# define ARCHITECTURE_ID "SHx" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__WATCOMC__) -+# if defined(_M_I86) -+# define ARCHITECTURE_ID "I86" -+ -+# elif defined(_M_IX86) -+# define ARCHITECTURE_ID "X86" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -+# if defined(__ICCARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__ICCRX__) -+# define ARCHITECTURE_ID "RX" -+ -+# elif defined(__ICCRH850__) -+# define ARCHITECTURE_ID "RH850" -+ -+# elif defined(__ICCRL78__) -+# define ARCHITECTURE_ID "RL78" -+ -+# elif defined(__ICCRISCV__) -+# define ARCHITECTURE_ID "RISCV" -+ -+# elif defined(__ICCAVR__) -+# define ARCHITECTURE_ID "AVR" -+ -+# elif defined(__ICC430__) -+# define ARCHITECTURE_ID "MSP430" -+ -+# elif defined(__ICCV850__) -+# define ARCHITECTURE_ID "V850" -+ -+# elif defined(__ICC8051__) -+# define ARCHITECTURE_ID "8051" -+ -+# elif defined(__ICCSTM8__) -+# define ARCHITECTURE_ID "STM8" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__ghs__) -+# if defined(__PPC64__) -+# define ARCHITECTURE_ID "PPC64" -+ -+# elif defined(__ppc__) -+# define ARCHITECTURE_ID "PPC" -+ -+# elif defined(__ARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__x86_64__) -+# define ARCHITECTURE_ID "x64" -+ -+# elif defined(__i386__) -+# define ARCHITECTURE_ID "X86" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__TI_COMPILER_VERSION__) -+# if defined(__TI_ARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__MSP430__) -+# define ARCHITECTURE_ID "MSP430" -+ -+# elif defined(__TMS320C28XX__) -+# define ARCHITECTURE_ID "TMS320C28x" -+ -+# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -+# define ARCHITECTURE_ID "TMS320C6x" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#else -+# define ARCHITECTURE_ID -+#endif -+ -+/* Convert integer to decimal digit literals. */ -+#define DEC(n) \ -+ ('0' + (((n) / 10000000)%10)), \ -+ ('0' + (((n) / 1000000)%10)), \ -+ ('0' + (((n) / 100000)%10)), \ -+ ('0' + (((n) / 10000)%10)), \ -+ ('0' + (((n) / 1000)%10)), \ -+ ('0' + (((n) / 100)%10)), \ -+ ('0' + (((n) / 10)%10)), \ -+ ('0' + ((n) % 10)) -+ -+/* Convert integer to hex digit literals. */ -+#define HEX(n) \ -+ ('0' + ((n)>>28 & 0xF)), \ -+ ('0' + ((n)>>24 & 0xF)), \ -+ ('0' + ((n)>>20 & 0xF)), \ -+ ('0' + ((n)>>16 & 0xF)), \ -+ ('0' + ((n)>>12 & 0xF)), \ -+ ('0' + ((n)>>8 & 0xF)), \ -+ ('0' + ((n)>>4 & 0xF)), \ -+ ('0' + ((n) & 0xF)) -+ -+/* Construct a string literal encoding the version number. */ -+#ifdef COMPILER_VERSION -+char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; -+ -+/* Construct a string literal encoding the version number components. */ -+#elif defined(COMPILER_VERSION_MAJOR) -+char const info_version[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', -+ COMPILER_VERSION_MAJOR, -+# ifdef COMPILER_VERSION_MINOR -+ '.', COMPILER_VERSION_MINOR, -+# ifdef COMPILER_VERSION_PATCH -+ '.', COMPILER_VERSION_PATCH, -+# ifdef COMPILER_VERSION_TWEAK -+ '.', COMPILER_VERSION_TWEAK, -+# endif -+# endif -+# endif -+ ']','\0'}; -+#endif -+ -+/* Construct a string literal encoding the internal version number. */ -+#ifdef COMPILER_VERSION_INTERNAL -+char const info_version_internal[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', -+ 'i','n','t','e','r','n','a','l','[', -+ COMPILER_VERSION_INTERNAL,']','\0'}; -+#elif defined(COMPILER_VERSION_INTERNAL_STR) -+char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -+#endif -+ -+/* Construct a string literal encoding the version number components. */ -+#ifdef SIMULATE_VERSION_MAJOR -+char const info_simulate_version[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', -+ SIMULATE_VERSION_MAJOR, -+# ifdef SIMULATE_VERSION_MINOR -+ '.', SIMULATE_VERSION_MINOR, -+# ifdef SIMULATE_VERSION_PATCH -+ '.', SIMULATE_VERSION_PATCH, -+# ifdef SIMULATE_VERSION_TWEAK -+ '.', SIMULATE_VERSION_TWEAK, -+# endif -+# endif -+# endif -+ ']','\0'}; -+#endif -+ -+/* Construct the string literal in pieces to prevent the source from -+ getting matched. Store it in a pointer rather than an array -+ because some compilers will just produce instructions to fill the -+ array rather than assigning a pointer to a static array. */ -+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; -+ -+ -+ -+#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L -+# if defined(__INTEL_CXX11_MODE__) -+# if defined(__cpp_aggregate_nsdmi) -+# define CXX_STD 201402L -+# else -+# define CXX_STD 201103L -+# endif -+# else -+# define CXX_STD 199711L -+# endif -+#elif defined(_MSC_VER) && defined(_MSVC_LANG) -+# define CXX_STD _MSVC_LANG -+#else -+# define CXX_STD __cplusplus -+#endif -+ -+const char* info_language_standard_default = "INFO" ":" "standard_default[" -+#if CXX_STD > 202002L -+ "23" -+#elif CXX_STD > 201703L -+ "20" -+#elif CXX_STD >= 201703L -+ "17" -+#elif CXX_STD >= 201402L -+ "14" -+#elif CXX_STD >= 201103L -+ "11" -+#else -+ "98" -+#endif -+"]"; -+ -+const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -+/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ -+#if (defined(__clang__) || defined(__GNUC__) || \ -+ defined(__TI_COMPILER_VERSION__)) && \ -+ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) -+ "ON" -+#else -+ "OFF" -+#endif -+"]"; -+ -+/*--------------------------------------------------------------------------*/ -+ -+int main(int argc, char* argv[]) -+{ -+ int require = 0; -+ require += info_compiler[argc]; -+ require += info_platform[argc]; -+#ifdef COMPILER_VERSION_MAJOR -+ require += info_version[argc]; -+#endif -+#ifdef COMPILER_VERSION_INTERNAL -+ require += info_version_internal[argc]; -+#endif -+#ifdef SIMULATE_ID -+ require += info_simulate[argc]; -+#endif -+#ifdef SIMULATE_VERSION_MAJOR -+ require += info_simulate_version[argc]; -+#endif -+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -+ require += info_cray[argc]; -+#endif -+ require += info_language_standard_default[argc]; -+ require += info_language_extensions_default[argc]; -+ (void)argv; -+ return require; -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -new file mode 100644 -index 0000000..4da9f9b -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeOutput.log b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeOutput.log -new file mode 100644 -index 0000000..732e81a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeOutput.log -@@ -0,0 +1,264 @@ -+The target system is: Android - 1 - aarch64 -+The host system is: Darwin - 25.2.0 - x86_64 -+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -+Compiler: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -+Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; -+Id flags: -c;--target=aarch64-none-linux-android24 -+ -+The output was: -+0 -+ -+ -+Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" -+ -+The C compiler identification is Clang, found in "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" -+ -+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -+Compiler: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ -+Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; -+Id flags: -c;--target=aarch64-none-linux-android24 -+ -+The output was: -+0 -+ -+ -+Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" -+ -+The CXX compiler identification is Clang, found in "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" -+ -+Detecting C compiler ABI info compiled with the following output: -+Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_11ed7 && [1/2] Building C object CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: aarch64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o -x c /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c -+clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0 -+ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -+End of search list. -+[2/2] Linking C executable cmTC_11ed7 -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: aarch64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_11ed7 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o -+ -+ -+ -+Parsed C implicit include dir info from above output: rv=done -+ found start of include info -+ found start of implicit include info -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ end of search list found -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ -+ -+Parsed C implicit link information from above output: -+ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] -+ ignore line: [Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_11ed7 && [1/2] Building C object CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o] -+ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: aarch64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o -x c /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] -+ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0] -+ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] -+ ignore line: [#include "..." search starts here:] -+ ignore line: [#include <...> search starts here:] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ ignore line: [End of search list.] -+ ignore line: [[2/2] Linking C executable cmTC_11ed7] -+ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: aarch64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_11ed7 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore -+ arg [-EL] ==> ignore -+ arg [--fix-cortex-a53-843419] ==> ignore -+ arg [-znow] ==> ignore -+ arg [-zrelro] ==> ignore -+ arg [-zmax-page-size=4096] ==> ignore -+ arg [--hash-style=gnu] ==> ignore -+ arg [--eh-frame-hdr] ==> ignore -+ arg [-m] ==> ignore -+ arg [aarch64linux] ==> ignore -+ arg [-pie] ==> ignore -+ arg [-dynamic-linker] ==> ignore -+ arg [/system/bin/linker64] ==> ignore -+ arg [-o] ==> ignore -+ arg [cmTC_11ed7] ==> ignore -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ arg [-zmax-page-size=16384] ==> ignore -+ arg [--build-id=sha1] ==> ignore -+ arg [--no-rosegment] ==> ignore -+ arg [--no-undefined-version] ==> ignore -+ arg [--fatal-warnings] ==> ignore -+ arg [--no-undefined] ==> ignore -+ arg [CMakeFiles/cmTC_11ed7.dir/CMakeCCompilerABI.c.o] ==> ignore -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [-lc] ==> lib [c] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] -+ implicit objs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit fwks: [] -+ -+ -+Detecting CXX compiler ABI info compiled with the following output: -+Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_fd173 && [1/2] Building CXX object CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: aarch64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -+clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0 -+ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -+End of search list. -+[2/2] Linking CXX executable cmTC_fd173 -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: aarch64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_fd173 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o -+ -+ -+ -+Parsed CXX implicit include dir info from above output: rv=done -+ found start of include info -+ found start of implicit include info -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ end of search list found -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ -+ -+Parsed CXX implicit link information from above output: -+ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] -+ ignore line: [Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_fd173 && [1/2] Building CXX object CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o] -+ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: aarch64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] -+ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0] -+ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] -+ ignore line: [#include "..." search starts here:] -+ ignore line: [#include <...> search starts here:] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ ignore line: [End of search list.] -+ ignore line: [[2/2] Linking CXX executable cmTC_fd173] -+ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: aarch64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_fd173 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore -+ arg [-EL] ==> ignore -+ arg [--fix-cortex-a53-843419] ==> ignore -+ arg [-znow] ==> ignore -+ arg [-zrelro] ==> ignore -+ arg [-zmax-page-size=4096] ==> ignore -+ arg [--hash-style=gnu] ==> ignore -+ arg [--eh-frame-hdr] ==> ignore -+ arg [-m] ==> ignore -+ arg [aarch64linux] ==> ignore -+ arg [-pie] ==> ignore -+ arg [-dynamic-linker] ==> ignore -+ arg [/system/bin/linker64] ==> ignore -+ arg [-o] ==> ignore -+ arg [cmTC_fd173] ==> ignore -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ arg [-zmax-page-size=16384] ==> ignore -+ arg [--build-id=sha1] ==> ignore -+ arg [--no-rosegment] ==> ignore -+ arg [--no-undefined-version] ==> ignore -+ arg [--fatal-warnings] ==> ignore -+ arg [--no-undefined] ==> ignore -+ arg [CMakeFiles/cmTC_fd173.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore -+ arg [-lc++] ==> lib [c++] -+ arg [-lm] ==> lib [m] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [-lc] ==> lib [c] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] -+ implicit objs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit fwks: [] -+ -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/TargetDirectories.txt -new file mode 100644 -index 0000000..cbcf9a0 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/TargetDirectories.txt -@@ -0,0 +1,3 @@ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/edit_cache.dir -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/rebuild_cache.dir -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake -new file mode 100644 -index 0000000..12d4d75 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake -@@ -0,0 +1,92 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by CMake Version 3.22 -+cmake_policy(SET CMP0009 NEW) -+ -+# REANIMATED_COMMON_CPP_SOURCES at CMakeLists.txt:40 (file) -+file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/*.cpp") -+set(OLD_GLOB -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/common.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/core/CSSTransition.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/linear.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/steps.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/algorithms.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/interpolators.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/keyframes.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/props.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Tools/FeatureFlags.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" -+ ) -+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") -+ message("-- GLOB mismatch!") -+ file(TOUCH_NOCREATE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs") -+endif() -+ -+# REANIMATED_ANDROID_CPP_SOURCES at CMakeLists.txt:42 (file) -+file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/*.cpp") -+set(OLD_GLOB -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" -+ ) -+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") -+ message("-- GLOB mismatch!") -+ file(TOUCH_NOCREATE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs") -+endif() -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.check_cache b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.check_cache -new file mode 100644 -index 0000000..3dccd73 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.check_cache -@@ -0,0 +1 @@ -+# This file is generated by cmake for dependency checking of the CMakeCache.txt file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs -new file mode 100644 -index 0000000..2b38fac ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs -@@ -0,0 +1 @@ -+# This file is generated by CMake for checking of the VerifyGlobs.cmake file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -new file mode 100644 -index 0000000..37093a2 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -new file mode 100644 -index 0000000..3e5392f -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -new file mode 100644 -index 0000000..0bdc746 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -new file mode 100644 -index 0000000..92bb5ec -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -new file mode 100644 -index 0000000..4077734 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -new file mode 100644 -index 0000000..1c0430d -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -new file mode 100644 -index 0000000..b97b7c1 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -new file mode 100644 -index 0000000..f663fd3 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -new file mode 100644 -index 0000000..af5d4ea -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -new file mode 100644 -index 0000000..c660990 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -new file mode 100644 -index 0000000..834b692 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -new file mode 100644 -index 0000000..c0a9212 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -new file mode 100644 -index 0000000..f7a0f35 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -new file mode 100644 -index 0000000..f76e989 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -new file mode 100644 -index 0000000..a5ce288 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -new file mode 100644 -index 0000000..2931bce -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -new file mode 100644 -index 0000000..9fa60c3 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -new file mode 100644 -index 0000000..a98c18b -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -new file mode 100644 -index 0000000..56c0bc9 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -new file mode 100644 -index 0000000..c9809bc -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -new file mode 100644 -index 0000000..43ece93 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -new file mode 100644 -index 0000000..c486b2a -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -new file mode 100644 -index 0000000..76014fa -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -new file mode 100644 -index 0000000..0e8ea4d -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -new file mode 100644 -index 0000000..eb75a73 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -new file mode 100644 -index 0000000..5e2fe2e -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -new file mode 100644 -index 0000000..d2532a9 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -new file mode 100644 -index 0000000..bfb1871 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -new file mode 100644 -index 0000000..1264709 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -new file mode 100644 -index 0000000..8abaa34 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -new file mode 100644 -index 0000000..eea8fea -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -new file mode 100644 -index 0000000..52c4f39 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -new file mode 100644 -index 0000000..6cad43c -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -new file mode 100644 -index 0000000..f987f99 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -new file mode 100644 -index 0000000..ca56eed -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -new file mode 100644 -index 0000000..7b9c37e -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -new file mode 100644 -index 0000000..3418a85 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -new file mode 100644 -index 0000000..8133426 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -new file mode 100644 -index 0000000..f423911 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -new file mode 100644 -index 0000000..1c377d3 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -new file mode 100644 -index 0000000..cab91f3 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -new file mode 100644 -index 0000000..72e8127 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -new file mode 100644 -index 0000000..cea42bf -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -new file mode 100644 -index 0000000..664ff89 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -new file mode 100644 -index 0000000..6ec5017 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -new file mode 100644 -index 0000000..1398769 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -new file mode 100644 -index 0000000..831bdc0 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -new file mode 100644 -index 0000000..42cee28 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -new file mode 100644 -index 0000000..8545078 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -new file mode 100644 -index 0000000..7b8d2aa -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -new file mode 100644 -index 0000000..af796a8 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -new file mode 100644 -index 0000000..4885498 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -new file mode 100644 -index 0000000..34c8eb6 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -new file mode 100644 -index 0000000..8800964 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -new file mode 100644 -index 0000000..b6d2730 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -new file mode 100644 -index 0000000..cdc94fa -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -new file mode 100644 -index 0000000..4d1b194 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -new file mode 100644 -index 0000000..ef843b3 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -new file mode 100644 -index 0000000..9852a16 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -new file mode 100644 -index 0000000..9e6a851 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -new file mode 100644 -index 0000000..d90b9fa -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -new file mode 100644 -index 0000000..453f789 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -new file mode 100644 -index 0000000..76f6fc7 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -new file mode 100644 -index 0000000..9246580 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -new file mode 100644 -index 0000000..7f25a5e -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -new file mode 100644 -index 0000000..f2128f1 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -new file mode 100644 -index 0000000..6d67456 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -new file mode 100644 -index 0000000..d5776ef -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -new file mode 100644 -index 0000000..5d97544 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -new file mode 100644 -index 0000000..2641f2b -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -new file mode 100644 -index 0000000..955103c -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/rules.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/rules.ninja -new file mode 100644 -index 0000000..f599c45 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/rules.ninja -@@ -0,0 +1,73 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by "Ninja" Generator, CMake Version 3.22 -+ -+# This file contains all the rules used to get the outputs files -+# built from the input files. -+# It is included in the main 'build.ninja'. -+ -+# ============================================================================= -+# Project: Reanimated -+# Configurations: Debug -+# ============================================================================= -+# ============================================================================= -+ -+############################################# -+# Rule for compiling CXX files. -+ -+rule CXX_COMPILER__reanimated_Debug -+ depfile = $DEP_FILE -+ deps = gcc -+ command = /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in -+ description = Building CXX object $out -+ -+ -+############################################# -+# Rule for linking CXX shared library. -+ -+rule CXX_SHARED_LIBRARY_LINKER__reanimated_Debug -+ command = $PRE_LINK && /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD -+ description = Linking CXX shared library $TARGET_FILE -+ restat = $RESTAT -+ -+ -+############################################# -+# Rule for running custom commands. -+ -+rule CUSTOM_COMMAND -+ command = $COMMAND -+ description = $DESC -+ -+ -+############################################# -+# Rule for re-running cmake. -+ -+rule RERUN_CMAKE -+ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a -+ description = Re-running CMake... -+ generator = 1 -+ -+ -+############################################# -+# Rule for re-checking globbed directories. -+ -+rule VERIFY_GLOBS -+ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake -+ description = Re-checking globbed directories... -+ generator = 1 -+ -+ -+############################################# -+# Rule for cleaning all built files. -+ -+rule CLEAN -+ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS -+ description = Cleaning all built files... -+ -+ -+############################################# -+# Rule for printing all primary targets available. -+ -+rule HELP -+ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets -+ description = All primary targets available: -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/additional_project_files.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/additional_project_files.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json -new file mode 100644 -index 0000000..a15ba7e ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json -@@ -0,0 +1,47 @@ -+{ -+ "buildFiles": [ -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "reanimated::@6890427a1f51a3e7e1df": { -+ "toolchain": "toolchain", -+ "abi": "arm64-v8a", -+ "artifactName": "reanimated", -+ "output": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so", -+ "runtimeFiles": [ -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", -+ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so", -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" -+ ] -+ } -+ }, -+ "toolchains": { -+ "toolchain": { -+ "cCompilerExecutable": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", -+ "cppCompilerExecutable": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" -+ } -+ }, -+ "cFileExtensions": [], -+ "cppFileExtensions": [ -+ "cpp" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build_mini.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build_mini.json -new file mode 100644 -index 0000000..f24a69d ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build_mini.json -@@ -0,0 +1,36 @@ -+{ -+ "buildFiles": [ -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "reanimated::@6890427a1f51a3e7e1df": { -+ "artifactName": "reanimated", -+ "abi": "arm64-v8a", -+ "output": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so", -+ "runtimeFiles": [ -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", -+ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so", -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" -+ ] -+ } -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build.ninja -new file mode 100644 -index 0000000..6fad67f ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build.ninja -@@ -0,0 +1,727 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by "Ninja" Generator, CMake Version 3.22 -+ -+# This file contains all the build statements describing the -+# compilation DAG. -+ -+# ============================================================================= -+# Write statements declared in CMakeLists.txt: -+# -+# Which is the root file. -+# ============================================================================= -+ -+# ============================================================================= -+# Project: Reanimated -+# Configurations: Debug -+# ============================================================================= -+ -+############################################# -+# Minimal version of Ninja required by this file -+ -+ninja_required_version = 1.8 -+ -+ -+############################################# -+# Set configuration variable for custom commands. -+ -+CONFIGURATION = Debug -+# ============================================================================= -+# Include auxiliary files. -+ -+ -+############################################# -+# Include rules file. -+ -+include CMakeFiles/rules.ninja -+ -+# ============================================================================= -+ -+############################################# -+# Logical path to working directory; prefix for absolute paths. -+ -+cmake_ninja_workdir = /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/ -+# ============================================================================= -+# Object build statements for SHARED_LIBRARY target reanimated -+ -+ -+############################################# -+# Order-only phony target for reanimated -+ -+build cmake_object_order_depends_target_reanimated: phony || CMakeFiles/reanimated.dir -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools -+ -+build CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android -+ -+build CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android -+ -+ -+# ============================================================================= -+# Link build statements for SHARED_LIBRARY target reanimated -+ -+ -+############################################# -+# Link the shared library ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so -+ -+build ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so: CXX_SHARED_LIBRARY_LINKER__reanimated_Debug CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o | /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so -+ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -+ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections -+ LINK_LIBRARIES = -llog /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so -landroid /Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so -latomic -lm -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ POST_BUILD = : -+ PRE_LINK = : -+ SONAME = libreanimated.so -+ SONAME_FLAG = -Wl,-soname, -+ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so -+ TARGET_PDB = reanimated.so.dbg -+ -+ -+############################################# -+# Utility command for edit_cache -+ -+build CMakeFiles/edit_cache.util: CUSTOM_COMMAND -+ COMMAND = cd /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a && /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a -+ DESC = Running CMake cache editor... -+ pool = console -+ restat = 1 -+ -+build edit_cache: phony CMakeFiles/edit_cache.util -+ -+ -+############################################# -+# Utility command for rebuild_cache -+ -+build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND -+ COMMAND = cd /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a && /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a -+ DESC = Running CMake to regenerate build system... -+ pool = console -+ restat = 1 -+ -+build rebuild_cache: phony CMakeFiles/rebuild_cache.util -+ -+# ============================================================================= -+# Target aliases. -+ -+build libreanimated.so: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so -+ -+build reanimated: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so -+ -+# ============================================================================= -+# Folder targets. -+ -+# ============================================================================= -+ -+############################################# -+# Folder: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a -+ -+build all: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so -+ -+# ============================================================================= -+# Built-in targets -+ -+ -+############################################# -+# Phony target to force glob verification run. -+ -+build /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake_force: phony -+ -+ -+############################################# -+# Re-run CMake to check if globbed directories changed. -+ -+build /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake_force -+ pool = console -+ restat = 1 -+ -+ -+############################################# -+# Re-run CMake if any of its inputs changed. -+ -+build build.ninja: RERUN_CMAKE /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/cmake.verify_globs | ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -+ pool = console -+ -+ -+############################################# -+# A missing CMake input file is not an error. -+ -+build ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/CMakeFiles/VerifyGlobs.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony -+ -+ -+############################################# -+# Clean all the built files. -+ -+build clean: CLEAN -+ -+ -+############################################# -+# Print all primary targets available. -+ -+build help: HELP -+ -+ -+############################################# -+# Make the all target the default. -+ -+default all -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build_file_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build_file_index.txt -new file mode 100644 -index 0000000..d99157d ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build_file_index.txt -@@ -0,0 +1,5 @@ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/cmake_install.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/cmake_install.cmake -new file mode 100644 -index 0000000..9db5c3a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/cmake_install.cmake -@@ -0,0 +1,54 @@ -+# Install script for directory: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -+ -+# Set the install prefix -+if(NOT DEFINED CMAKE_INSTALL_PREFIX) -+ set(CMAKE_INSTALL_PREFIX "/usr/local") -+endif() -+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") -+ -+# Set the install configuration name. -+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) -+ if(BUILD_TYPE) -+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" -+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") -+ else() -+ set(CMAKE_INSTALL_CONFIG_NAME "Debug") -+ endif() -+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -+endif() -+ -+# Set the component getting installed. -+if(NOT CMAKE_INSTALL_COMPONENT) -+ if(COMPONENT) -+ message(STATUS "Install component: \"${COMPONENT}\"") -+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") -+ else() -+ set(CMAKE_INSTALL_COMPONENT) -+ endif() -+endif() -+ -+# Install shared libraries without execute permission? -+if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) -+ set(CMAKE_INSTALL_SO_NO_EXE "0") -+endif() -+ -+# Is this installation the result of a crosscompile? -+if(NOT DEFINED CMAKE_CROSSCOMPILING) -+ set(CMAKE_CROSSCOMPILING "TRUE") -+endif() -+ -+# Set default install directory permissions. -+if(NOT DEFINED CMAKE_OBJDUMP) -+ set(CMAKE_OBJDUMP "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") -+endif() -+ -+if(CMAKE_INSTALL_COMPONENT) -+ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") -+else() -+ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -+endif() -+ -+string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT -+ "${CMAKE_INSTALL_MANIFEST_FILES}") -+file(WRITE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" -+ "${CMAKE_INSTALL_MANIFEST_CONTENT}") -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json -new file mode 100644 -index 0000000..3994cec ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json -@@ -0,0 +1,357 @@ -+[ -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json.bin -new file mode 100644 -index 0000000..a46e0fb -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json.bin differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/configure_fingerprint.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/configure_fingerprint.bin -new file mode 100644 -index 0000000..8e99ea1 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/configure_fingerprint.bin -@@ -0,0 +1,38 @@ -+C/C++ Structured Log -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/additional_project_files.txtC -+A -+?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  3  3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json  3 Ĕ3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build_mini.json  3 3u -+s -+q/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build.ninja  3 ݓ3y -+w -+u/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build.ninja.txt  3~ -+| -+z/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/build_file_index.txt  •3 Ž3 -+} -+{/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json  •3 ۓ3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json.bin  •3  ۓ3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/metadata_generation_command.txt  •3 -+ Ž3| -+z -+x/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/prefab_config.json  •3  3 -+ -+}/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/symbol_folder_index.txt  •3  | Ž3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake  •3  3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake  •3 Ž3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake  •3 3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake  •3 Ž3Z -+X -+V/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt  •3 3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  •3 -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/metadata_generation_command.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/metadata_generation_command.txt -new file mode 100644 -index 0000000..634e794 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/metadata_generation_command.txt -@@ -0,0 +1,29 @@ -+ -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -+-DCMAKE_SYSTEM_NAME=Android -+-DCMAKE_EXPORT_COMPILE_COMMANDS=ON -+-DCMAKE_SYSTEM_VERSION=24 -+-DANDROID_PLATFORM=android-24 -+-DANDROID_ABI=arm64-v8a -+-DCMAKE_ANDROID_ARCH_ABI=arm64-v8a -+-DANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_ANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_TOOLCHAIN_FILE=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a -+-DCMAKE_BUILD_TYPE=Debug -+-DCMAKE_FIND_ROOT_PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab -+-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a -+-GNinja -+-DANDROID_STL=c++_shared -+-DREACT_NATIVE_MINOR_VERSION=81 -+-DANDROID_TOOLCHAIN=clang -+-DREACT_NATIVE_DIR=/Users/james/GitHub/Wallet/node_modules/react-native -+-DREACT_NATIVE_WORKLETS_DIR=/Users/james/GitHub/Wallet/node_modules/react-native-worklets -+-DIS_REANIMATED_EXAMPLE_APP=false -+-DREANIMATED_PROFILING=false -+-DREANIMATED_VERSION=4.1.6 -+-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -+-DREANIMATED_FEATURE_FLAGS=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] -+ Build command args: [] -+ Version: 2 -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/prefab_config.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/prefab_config.json -new file mode 100644 -index 0000000..06998f9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/prefab_config.json -@@ -0,0 +1,9 @@ -+{ -+ "enabled": true, -+ "prefabPath": "/Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", -+ "packages": [ -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/symbol_folder_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/symbol_folder_index.txt -new file mode 100644 -index 0000000..f6c11dd ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/symbol_folder_index.txt -@@ -0,0 +1 @@ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/hash_key.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/hash_key.txt -new file mode 100644 -index 0000000..d3a8694 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/hash_key.txt -@@ -0,0 +1,36 @@ -+# Values used to calculate the hash in this folder name. -+# Should not depend on the absolute path of the project itself. -+# - AGP: 8.11.0. -+# - $NDK is the path to NDK 27.1.12297006. -+# - $PROJECT is the path to the parent folder of the root Gradle build file. -+# - $ABI is the ABI to be built with. The specific value doesn't contribute to the value of the hash. -+# - $HASH is the hash value computed from this text. -+# - $CMAKE is the path to CMake 3.22.1. -+# - $NINJA is the path to Ninja. -+-H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -+-DCMAKE_SYSTEM_NAME=Android -+-DCMAKE_EXPORT_COMPILE_COMMANDS=ON -+-DCMAKE_SYSTEM_VERSION=24 -+-DANDROID_PLATFORM=android-24 -+-DANDROID_ABI=$ABI -+-DCMAKE_ANDROID_ARCH_ABI=$ABI -+-DANDROID_NDK=$NDK -+-DCMAKE_ANDROID_NDK=$NDK -+-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=$NINJA -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI -+-DCMAKE_BUILD_TYPE=Debug -+-DCMAKE_FIND_ROOT_PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/prefab/$ABI/prefab -+-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/$ABI -+-GNinja -+-DANDROID_STL=c++_shared -+-DREACT_NATIVE_MINOR_VERSION=81 -+-DANDROID_TOOLCHAIN=clang -+-DREACT_NATIVE_DIR=/Users/james/GitHub/Wallet/node_modules/react-native -+-DREACT_NATIVE_WORKLETS_DIR=/Users/james/GitHub/Wallet/node_modules/react-native-worklets -+-DIS_REANIMATED_EXAMPLE_APP=false -+-DREANIMATED_PROFILING=false -+-DREANIMATED_VERSION=4.1.6 -+-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -+-DREANIMATED_FEATURE_FLAGS=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -new file mode 100644 -index 0000000..ba50b13 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -@@ -0,0 +1,27 @@ -+if(NOT TARGET ReactAndroid::hermestooling) -+add_library(ReactAndroid::hermestooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::hermestooling PROPERTIES -+ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/hermestooling/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsi) -+add_library(ReactAndroid::jsi SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsi PROPERTIES -+ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::reactnative) -+add_library(ReactAndroid::reactnative SHARED IMPORTED) -+set_target_properties(ReactAndroid::reactnative PROPERTIES -+ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -new file mode 100644 -index 0000000..21e3708 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.81.5) -+if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_COMPATIBLE FALSE) -+else() -+ set(PACKAGE_VERSION_COMPATIBLE TRUE) -+ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_EXACT TRUE) -+ endif() -+endif() -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake -new file mode 100644 -index 0000000..a6c6bfa ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake -@@ -0,0 +1,9 @@ -+if(NOT TARGET fbjni::fbjni) -+add_library(fbjni::fbjni SHARED IMPORTED) -+set_target_properties(fbjni::fbjni PROPERTIES -+ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake -new file mode 100644 -index 0000000..fdd188a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 3.22.1) -+if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_COMPATIBLE FALSE) -+else() -+ set(PACKAGE_VERSION_COMPATIBLE TRUE) -+ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_EXACT TRUE) -+ endif() -+endif() -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake -new file mode 100644 -index 0000000..d4ccd69 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake -@@ -0,0 +1,9 @@ -+if(NOT TARGET react-native-worklets::worklets) -+add_library(react-native-worklets::worklets SHARED IMPORTED) -+set_target_properties(react-native-worklets::worklets PROPERTIES -+ IMPORTED_LOCATION "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cxx/Debug/3t3jm3v4/obj/arm64-v8a/libworklets.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/prefab-headers/worklets" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake -new file mode 100644 -index 0000000..4f4ecdf ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.5.1) -+if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_COMPATIBLE FALSE) -+else() -+ set(PACKAGE_VERSION_COMPATIBLE TRUE) -+ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_EXACT TRUE) -+ endif() -+endif() -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -new file mode 100644 -index 0000000..0f00d43 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -@@ -0,0 +1,27 @@ -+if(NOT TARGET ReactAndroid::hermestooling) -+add_library(ReactAndroid::hermestooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::hermestooling PROPERTIES -+ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/hermestooling/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsi) -+add_library(ReactAndroid::jsi SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsi PROPERTIES -+ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::reactnative) -+add_library(ReactAndroid::reactnative SHARED IMPORTED) -+set_target_properties(ReactAndroid::reactnative PROPERTIES -+ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -new file mode 100644 -index 0000000..21e3708 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.81.5) -+if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_COMPATIBLE FALSE) -+else() -+ set(PACKAGE_VERSION_COMPATIBLE TRUE) -+ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_EXACT TRUE) -+ endif() -+endif() -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake -new file mode 100644 -index 0000000..73a42f7 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake -@@ -0,0 +1,9 @@ -+if(NOT TARGET fbjni::fbjni) -+add_library(fbjni::fbjni SHARED IMPORTED) -+set_target_properties(fbjni::fbjni PROPERTIES -+ IMPORTED_LOCATION "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake -new file mode 100644 -index 0000000..fdd188a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 3.22.1) -+if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_COMPATIBLE FALSE) -+else() -+ set(PACKAGE_VERSION_COMPATIBLE TRUE) -+ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_EXACT TRUE) -+ endif() -+endif() -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake -new file mode 100644 -index 0000000..32609c9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfig.cmake -@@ -0,0 +1,9 @@ -+if(NOT TARGET react-native-worklets::worklets) -+add_library(react-native-worklets::worklets SHARED IMPORTED) -+set_target_properties(react-native-worklets::worklets PROPERTIES -+ IMPORTED_LOCATION "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cxx/Debug/3t3jm3v4/obj/x86_64/libworklets.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/prefab-headers/worklets" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake -new file mode 100644 -index 0000000..4f4ecdf ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-worklets/react-native-workletsConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.5.1) -+if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_COMPATIBLE FALSE) -+else() -+ set(PACKAGE_VERSION_COMPATIBLE TRUE) -+ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") -+ set(PACKAGE_VERSION_EXACT TRUE) -+ endif() -+endif() -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/cache-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cache-v2-6f38ba9ab7b74f2e6cfe.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cache-v2-6f38ba9ab7b74f2e6cfe.json -new file mode 100644 -index 0000000..2ebab4b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cache-v2-6f38ba9ab7b74f2e6cfe.json -@@ -0,0 +1,1479 @@ -+{ -+ "entries" : -+ [ -+ { -+ "name" : "ANDROID_ABI", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "x86_64" -+ }, -+ { -+ "name" : "ANDROID_NDK", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006" -+ }, -+ { -+ "name" : "ANDROID_PLATFORM", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "android-24" -+ }, -+ { -+ "name" : "ANDROID_STL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "c++_shared" -+ }, -+ { -+ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "ON" -+ }, -+ { -+ "name" : "ANDROID_TOOLCHAIN", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "clang" -+ }, -+ { -+ "name" : "CMAKE_ADDR2LINE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" -+ }, -+ { -+ "name" : "CMAKE_ANDROID_ARCH_ABI", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "x86_64" -+ }, -+ { -+ "name" : "CMAKE_ANDROID_NDK", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006" -+ }, -+ { -+ "name" : "CMAKE_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" -+ }, -+ { -+ "name" : "CMAKE_ASM_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during all build types." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_ASM_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during debug builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_ASM_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during release builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_BUILD_TYPE", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "Debug" -+ }, -+ { -+ "name" : "CMAKE_CACHEFILE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "This is the directory where this CMakeCache.txt was created" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64" -+ }, -+ { -+ "name" : "CMAKE_CACHE_MAJOR_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Major version of cmake used to create the current loaded cache" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "3" -+ }, -+ { -+ "name" : "CMAKE_CACHE_MINOR_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Minor version of cmake used to create the current loaded cache" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "22" -+ }, -+ { -+ "name" : "CMAKE_CACHE_PATCH_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Patch version of cmake used to create the current loaded cache" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "1" -+ }, -+ { -+ "name" : "CMAKE_COMMAND", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to CMake executable." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake" -+ }, -+ { -+ "name" : "CMAKE_CPACK_COMMAND", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to cpack program executable." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack" -+ }, -+ { -+ "name" : "CMAKE_CTEST_COMMAND", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to ctest program executable." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Generate index for LLVM archive" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during all build types." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during debug builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-Os -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during release builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-O2 -g -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Libraries linked by default with all C++ applications." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-latomic -lm" -+ }, -+ { -+ "name" : "CMAKE_C_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" -+ }, -+ { -+ "name" : "CMAKE_C_COMPILER_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Generate index for LLVM archive" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" -+ }, -+ { -+ "name" : "CMAKE_C_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during all build types." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_C_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during debug builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_C_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the C compiler during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-Os -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_C_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during release builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-O2 -g -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_C_STANDARD_LIBRARIES", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Libraries linked by default with all C applications." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-latomic -lm" -+ }, -+ { -+ "name" : "CMAKE_DLLTOOL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" -+ }, -+ { -+ "name" : "CMAKE_EDIT_COMMAND", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to cache edit program executable." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake" -+ }, -+ { -+ "name" : "CMAKE_EXECUTABLE_FORMAT", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Executable file format" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "ELF" -+ }, -+ { -+ "name" : "CMAKE_EXE_LINKER_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during DEBUG builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during RELEASE builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "ON" -+ }, -+ { -+ "name" : "CMAKE_EXTRA_GENERATOR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Name of external makefile project generator." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_FIND_ROOT_PATH", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab" -+ }, -+ { -+ "name" : "CMAKE_GENERATOR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Name of generator." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "Ninja" -+ }, -+ { -+ "name" : "CMAKE_GENERATOR_INSTANCE", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Generator instance identifier." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_GENERATOR_PLATFORM", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Name of generator platform." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_GENERATOR_TOOLSET", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Name of generator toolset." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_HOME_DIRECTORY", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Source directory with the top level CMakeLists.txt file for this project" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" -+ }, -+ { -+ "name" : "CMAKE_INSTALL_PREFIX", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Install path prefix, prepended onto install directories." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/usr/local" -+ }, -+ { -+ "name" : "CMAKE_INSTALL_SO_NO_EXE", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Install .so files without execute permission." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "0" -+ }, -+ { -+ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64" -+ }, -+ { -+ "name" : "CMAKE_LINKER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" -+ }, -+ { -+ "name" : "CMAKE_MAKE_PROGRAM", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja" -+ }, -+ { -+ "name" : "CMAKE_MODULE_LINKER_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of modules." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_NM", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" -+ }, -+ { -+ "name" : "CMAKE_NUMBER_OF_MAKEFILES", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "number of local generators" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "1" -+ }, -+ { -+ "name" : "CMAKE_OBJCOPY", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" -+ }, -+ { -+ "name" : "CMAKE_OBJDUMP", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" -+ }, -+ { -+ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Platform information initialized" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "1" -+ }, -+ { -+ "name" : "CMAKE_PROJECT_DESCRIPTION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_PROJECT_NAME", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "Reanimated" -+ }, -+ { -+ "name" : "CMAKE_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Ranlib" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" -+ }, -+ { -+ "name" : "CMAKE_READELF", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" -+ }, -+ { -+ "name" : "CMAKE_ROOT", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to CMake installation." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" -+ }, -+ { -+ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64" -+ }, -+ { -+ "name" : "CMAKE_SHARED_LINKER_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of dll's." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_SKIP_INSTALL_RPATH", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." -+ } -+ ], -+ "type" : "BOOL", -+ "value" : "NO" -+ }, -+ { -+ "name" : "CMAKE_SKIP_RPATH", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "If set, runtime paths are not added when using shared libraries." -+ } -+ ], -+ "type" : "BOOL", -+ "value" : "NO" -+ }, -+ { -+ "name" : "CMAKE_STATIC_LINKER_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of static libraries during all build types." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_STRIP", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Strip" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" -+ }, -+ { -+ "name" : "CMAKE_SYSTEM_NAME", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "Android" -+ }, -+ { -+ "name" : "CMAKE_SYSTEM_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "24" -+ }, -+ { -+ "name" : "CMAKE_TOOLCHAIN_FILE", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "name" : "CMAKE_UNAME", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "uname command" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/usr/bin/uname" -+ }, -+ { -+ "name" : "CMAKE_VERBOSE_MAKEFILE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." -+ } -+ ], -+ "type" : "BOOL", -+ "value" : "FALSE" -+ }, -+ { -+ "name" : "IS_REANIMATED_EXAMPLE_APP", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "false" -+ }, -+ { -+ "name" : "REACT_NATIVE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native" -+ }, -+ { -+ "name" : "REACT_NATIVE_MINOR_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "81" -+ }, -+ { -+ "name" : "REACT_NATIVE_WORKLETS_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets" -+ }, -+ { -+ "name" : "REANIMATED_FEATURE_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -+ }, -+ { -+ "name" : "REANIMATED_PROFILING", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "false" -+ }, -+ { -+ "name" : "REANIMATED_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "4.1.6" -+ }, -+ { -+ "name" : "ReactAndroid_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for ReactAndroid." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid" -+ }, -+ { -+ "name" : "Reanimated_BINARY_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64" -+ }, -+ { -+ "name" : "Reanimated_IS_TOP_LEVEL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "ON" -+ }, -+ { -+ "name" : "Reanimated_SOURCE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" -+ }, -+ { -+ "name" : "fbjni_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for fbjni." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni" -+ }, -+ { -+ "name" : "reanimated_LIB_DEPENDS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Dependencies for the target" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;android;general;worklets;general;ReactAndroid::reactnative;" -+ } -+ ], -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-78b18d26fbcf07d127de.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-78b18d26fbcf07d127de.json -new file mode 100644 -index 0000000..e47da52 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-78b18d26fbcf07d127de.json -@@ -0,0 +1,208 @@ -+{ -+ "inputs" : -+ [ -+ { -+ "path" : "CMakeLists.txt" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : ".cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : ".cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : ".cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" -+ }, -+ { -+ "path" : ".cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" -+ }, -+ { -+ "path" : ".cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake" -+ }, -+ { -+ "path" : ".cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" -+ }, -+ { -+ "path" : ".cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake" -+ } -+ ], -+ "kind" : "cmakeFiles", -+ "paths" : -+ { -+ "build" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "source" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" -+ }, -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/codemodel-v2-2981c4b98a4f6609961a.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/codemodel-v2-2981c4b98a4f6609961a.json -new file mode 100644 -index 0000000..fe8fc36 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/codemodel-v2-2981c4b98a4f6609961a.json -@@ -0,0 +1,60 @@ -+{ -+ "configurations" : -+ [ -+ { -+ "directories" : -+ [ -+ { -+ "build" : ".", -+ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", -+ "minimumCMakeVersion" : -+ { -+ "string" : "3.13" -+ }, -+ "projectIndex" : 0, -+ "source" : ".", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "name" : "Debug", -+ "projects" : -+ [ -+ { -+ "directoryIndexes" : -+ [ -+ 0 -+ ], -+ "name" : "Reanimated", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "targets" : -+ [ -+ { -+ "directoryIndex" : 0, -+ "id" : "reanimated::@6890427a1f51a3e7e1df", -+ "jsonFile" : "target-reanimated-Debug-63f9c61a51dac5fad3ca.json", -+ "name" : "reanimated", -+ "projectIndex" : 0 -+ } -+ ] -+ } -+ ], -+ "kind" : "codemodel", -+ "paths" : -+ { -+ "build" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "source" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android" -+ }, -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -new file mode 100644 -index 0000000..3a67af9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -@@ -0,0 +1,14 @@ -+{ -+ "backtraceGraph" : -+ { -+ "commands" : [], -+ "files" : [], -+ "nodes" : [] -+ }, -+ "installers" : [], -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ } -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/index-2026-06-08T20-47-00-0994.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/index-2026-06-08T20-47-00-0994.json -new file mode 100644 -index 0000000..d8fcb07 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/index-2026-06-08T20-47-00-0994.json -@@ -0,0 +1,92 @@ -+{ -+ "cmake" : -+ { -+ "generator" : -+ { -+ "multiConfig" : false, -+ "name" : "Ninja" -+ }, -+ "paths" : -+ { -+ "cmake" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cpack" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack", -+ "ctest" : "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest", -+ "root" : "/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" -+ }, -+ "version" : -+ { -+ "isDirty" : false, -+ "major" : 3, -+ "minor" : 22, -+ "patch" : 1, -+ "string" : "3.22.1-g37088a8", -+ "suffix" : "g37088a8" -+ } -+ }, -+ "objects" : -+ [ -+ { -+ "jsonFile" : "codemodel-v2-2981c4b98a4f6609961a.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ }, -+ { -+ "jsonFile" : "cache-v2-6f38ba9ab7b74f2e6cfe.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ { -+ "jsonFile" : "cmakeFiles-v1-78b18d26fbcf07d127de.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ } -+ ], -+ "reply" : -+ { -+ "client-agp" : -+ { -+ "cache-v2" : -+ { -+ "jsonFile" : "cache-v2-6f38ba9ab7b74f2e6cfe.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ "cmakeFiles-v1" : -+ { -+ "jsonFile" : "cmakeFiles-v1-78b18d26fbcf07d127de.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ }, -+ "codemodel-v2" : -+ { -+ "jsonFile" : "codemodel-v2-2981c4b98a4f6609961a.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ } -+ } -+ } -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/target-reanimated-Debug-63f9c61a51dac5fad3ca.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/target-reanimated-Debug-63f9c61a51dac5fad3ca.json -new file mode 100644 -index 0000000..7612482 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.cmake/api/v1/reply/target-reanimated-Debug-63f9c61a51dac5fad3ca.json -@@ -0,0 +1,877 @@ -+{ -+ "artifacts" : -+ [ -+ { -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so" -+ } -+ ], -+ "backtrace" : 1, -+ "backtraceGraph" : -+ { -+ "commands" : -+ [ -+ "add_library", -+ "target_link_libraries", -+ "add_compile_options", -+ "target_compile_options", -+ "target_compile_reactnative_options", -+ "target_compile_definitions", -+ "target_include_directories" -+ ], -+ "files" : -+ [ -+ "CMakeLists.txt", -+ "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake" -+ ], -+ "nodes" : -+ [ -+ { -+ "file" : 0 -+ }, -+ { -+ "command" : 0, -+ "file" : 0, -+ "line" : 48, -+ "parent" : 0 -+ }, -+ { -+ "command" : 1, -+ "file" : 0, -+ "line" : 95, -+ "parent" : 0 -+ }, -+ { -+ "command" : 1, -+ "file" : 0, -+ "line" : 99, -+ "parent" : 0 -+ }, -+ { -+ "command" : 2, -+ "file" : 0, -+ "line" : 12, -+ "parent" : 0 -+ }, -+ { -+ "command" : 4, -+ "file" : 0, -+ "line" : 54, -+ "parent" : 0 -+ }, -+ { -+ "command" : 3, -+ "file" : 1, -+ "line" : 30, -+ "parent" : 5 -+ }, -+ { -+ "command" : 5, -+ "file" : 1, -+ "line" : 33, -+ "parent" : 5 -+ }, -+ { -+ "command" : 6, -+ "file" : 0, -+ "line" : 60, -+ "parent" : 0 -+ } -+ ] -+ }, -+ "compileGroups" : -+ [ -+ { -+ "compileCommandFragments" : -+ [ -+ { -+ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_NO_CONFIG=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_USE_LIBCPP=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_MOBILE=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" -+ }, -+ { -+ "backtrace" : 4, -+ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-Wall" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-Werror" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-fexceptions" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-frtti" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-std=c++20" -+ }, -+ { -+ "backtrace" : 6, -+ "fragment" : "-DLOG_TAG=\\\"ReactNative\\\"" -+ }, -+ { -+ "fragment" : "-std=gnu++20" -+ } -+ ], -+ "defines" : -+ [ -+ { -+ "backtrace" : 7, -+ "define" : "RN_SERIALIZABLE_STATE" -+ }, -+ { -+ "define" : "reanimated_EXPORTS" -+ } -+ ], -+ "includes" : -+ [ -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp" -+ }, -+ { -+ "backtrace" : 8, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" -+ }, -+ { -+ "backtrace" : 3, -+ "isSystem" : true, -+ "path" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include" -+ } -+ ], -+ "language" : "CXX", -+ "languageStandard" : -+ { -+ "backtraces" : -+ [ -+ 1 -+ ], -+ "standard" : "20" -+ }, -+ "sourceIndexes" : -+ [ -+ 0, -+ 1, -+ 2, -+ 3, -+ 4, -+ 5, -+ 6, -+ 7, -+ 8, -+ 9, -+ 10, -+ 11, -+ 12, -+ 13, -+ 14, -+ 15, -+ 16, -+ 17, -+ 18, -+ 19, -+ 20, -+ 21, -+ 22, -+ 23, -+ 24, -+ 25, -+ 26, -+ 27, -+ 28, -+ 29, -+ 30, -+ 31, -+ 32, -+ 33, -+ 34, -+ 35, -+ 36, -+ 37, -+ 38, -+ 39, -+ 40, -+ 41, -+ 42, -+ 43, -+ 44, -+ 45, -+ 46, -+ 47, -+ 48, -+ 49, -+ 50, -+ 51, -+ 52, -+ 53, -+ 54, -+ 55, -+ 56, -+ 57, -+ 58, -+ 59, -+ 60, -+ 61, -+ 62, -+ 63, -+ 64, -+ 65, -+ 66, -+ 67, -+ 68, -+ 69, -+ 70 -+ ], -+ "sysroot" : -+ { -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ } -+ ], -+ "id" : "reanimated::@6890427a1f51a3e7e1df", -+ "link" : -+ { -+ "commandFragments" : -+ [ -+ { -+ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections", -+ "role" : "flags" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "-llog", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "-landroid", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", -+ "role" : "libraries" -+ }, -+ { -+ "fragment" : "-latomic -lm", -+ "role" : "libraries" -+ } -+ ], -+ "language" : "CXX", -+ "sysroot" : -+ { -+ "path" : "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ }, -+ "name" : "reanimated", -+ "nameOnDisk" : "libreanimated.so", -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ }, -+ "sourceGroups" : -+ [ -+ { -+ "name" : "Source Files", -+ "sourceIndexes" : -+ [ -+ 0, -+ 1, -+ 2, -+ 3, -+ 4, -+ 5, -+ 6, -+ 7, -+ 8, -+ 9, -+ 10, -+ 11, -+ 12, -+ 13, -+ 14, -+ 15, -+ 16, -+ 17, -+ 18, -+ 19, -+ 20, -+ 21, -+ 22, -+ 23, -+ 24, -+ 25, -+ 26, -+ 27, -+ 28, -+ 29, -+ 30, -+ 31, -+ 32, -+ 33, -+ 34, -+ 35, -+ 36, -+ 37, -+ 38, -+ 39, -+ 40, -+ 41, -+ 42, -+ 43, -+ 44, -+ 45, -+ 46, -+ 47, -+ 48, -+ 49, -+ 50, -+ 51, -+ 52, -+ 53, -+ 54, -+ 55, -+ 56, -+ 57, -+ 58, -+ 59, -+ 60, -+ 61, -+ 62, -+ 63, -+ 64, -+ 65, -+ 66, -+ 67, -+ 68, -+ 69, -+ 70 -+ ] -+ } -+ ], -+ "sources" : -+ [ -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "src/main/cpp/reanimated/android/NativeProxy.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "src/main/cpp/reanimated/android/OnLoad.cpp", -+ "sourceGroupIndex" : 0 -+ } -+ ], -+ "type" : "SHARED_LIBRARY" -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_deps b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_deps -new file mode 100644 -index 0000000..fcf4f3a -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_deps differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_log b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_log -new file mode 100644 -index 0000000..7ec008d ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/.ninja_log -@@ -0,0 +1,147 @@ -+# ninja log v5 -+0 96 0 /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs 9c1490dad55027ef -+29484 48452 1769779368327721848 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o 2606a5e7c32fa2b9 -+34 9943 1769779329840329397 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o 8dc772465a142b81 -+13516 39360 1769779359210490891 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o 475769c12f9b8a -+4104 22150 1769779342015627208 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o 7e1d236f5fc85bd6 -+16886 39037 1769779358883961084 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o 99f20bf369e08a67 -+30 4484 1769779324386805791 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o 9ca370ab1508462d -+80748 92150 1769779412036753366 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o 73ef6cbb131f4a98 -+25213 34226 1769779354110855784 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o f4402267afcb6658 -+37 16886 1769779336703155977 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o a5f482c70d6d39d1 -+67716 81770 1769779401654751256 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o b4728588fb9411b4 -+35735 50260 1769779370145067057 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o 4680589b9afb99a5 -+52 16784 1769779336648244342 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o e6453388a32262b4 -+34226 51647 1769779371498940090 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o d77900b97925048f -+35 17377 1769779337224887912 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o 18394ea1fd8b5e62 -+40 4103 1769779323995141928 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o 212e3cf732075cfa -+47 25525 1769779345246730410 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o 9c286473204fed92 -+23135 43799 1769779363637321654 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o e355a556b1c2016d -+75218 91213 1769779411048978829 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o 6be26013d26852e8 -+33172 39364 1769779359266193965 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o 7bdb7910b2a997cf -+45459 57370 1769779377239108158 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o cc32523e7970b7f6 -+77404 96984 1769779416832164354 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o ccb35515ea2ee1ca -+22151 28786 1769779348652001076 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o f2f33831dfe21d15 -+48453 60327 1769779380190905747 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o b7e2e64d4e68d553 -+17377 25213 1769779345111748468 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o b5f9097b1ecad26f -+43 4662 1769779324571347817 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o c54994fde5e39a8c -+52683 64779 1769779384654982172 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o 3802ee82e8b4fee8 -+23156 45459 1769779365320469297 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o ed9b8dc308e76898 -+32 43045 1769779362596215580 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o 7febe31d11f175af -+25525 33172 1769779353078132736 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o a8b2bf0b73701d7e -+86500 89619 1769779409522103656 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o 1a28ce3eed90b319 -+81770 101426 1769779421241291182 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o 706300bcf17fcc5 -+39364 53655 1769779373509803326 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o 6523a91cd124238f -+60328 75357 1769779395187769721 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o 2bcf2713bd81b403 -+16785 48046 1769779367811117546 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o d46ce6a4988083a8 -+39037 52682 1769779372545844832 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o 5eb84fcdccb0f1d9 -+29 13516 1769779333389679965 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o 5e56db405abad8f0 -+39361 53677 1769779373552417477 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o 21face1ce5df4371 -+43046 56491 1769779376361136952 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o 33a4198f80537637 -+64551 77403 1769779397275538761 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o e1e2c1d4fea7d741 -+70740 83866 1769779403745892755 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o 68ab3f60a4364718 -+64779 67716 1769779387590330411 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o eccd1b4ad981886 -+43800 58548 1769779378376230341 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o d945e784cf2304e5 -+9946 29483 1769779349380092835 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o d3533c71eedeafad -+57717 75218 1769779395030503389 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o 989f1b0ec6b6d086 -+48047 62284 1769779382133305451 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o 8bb35c1329cb683a -+28786 35735 1769779355629746995 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o c59a8e8358a9606f -+53655 65833 1769779385713517374 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o 7cd3d2d62721839f -+57370 69280 1769779389134148176 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o 666b5140c76c3be4 -+56491 57717 1769779377620696504 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o 4ffa84f06d77454c -+73929 89824 1769779409644105793 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o 7eab45492571fe00 -+67590 71636 1769779391528825213 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o bbb5263162d95017 -+53677 64550 1769779384429250009 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o 4c36a36a13c40544 -+50260 61781 1769779381673368577 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o 8eb3cfc87de99e6a -+51647 67590 1769779387371365885 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o 16e8c79a71735e3 -+83866 96760 1769779416643710309 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o aebd52c61793894b -+58549 70962 1769779390788261756 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o a15ffb5e81b84c -+84987 94501 1769779414379774923 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o fdd984c993e3d1a1 -+62285 73929 1769779393822926575 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o 544c9731dcd9afe7 -+65833 78912 1769779398799842344 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o 828b46d8fbf96e31 -+75358 80747 1769779400644852595 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o e30bac7826be9e87 -+70962 83838 1769779403730713792 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o 2682aec26766dd0f -+78912 90829 1769779410708934364 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o 2743f5888622d1af -+83839 89644 1769779409535510277 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o 295b5a19a4058da4 -+69281 84986 1769779404836485760 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o 8bb6bb1b25997ad1 -+4484 23135 1769779342929201825 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o b749becb436ebe29 -+61781 70740 1769779390624065235 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o 9b8c992a0ef428f5 -+4662 23156 1769779343018624146 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o 3216d77fe6c8cedd -+89644 93152 1769779413054670127 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o 209825bde6157d0c -+89824 98935 1769779418831671042 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o 49ee2fe526a7a70c -+71637 86499 1769779406367961768 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o 1a44ea860755ae79 -+89619 101116 1769779420982640970 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o 268c907284b4254b -+101426 102175 1769779421938616597 ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so 3ec0516ccd5e872e -+2 219 0 /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs 9c1490dad55027ef -+39 9049 1780952146157470262 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o c3acf002d7ca1cc5 -+35 9854 1780952146972418493 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o a7ceb8cf7d2764eb -+41 10115 1780952147231268346 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o 7a68e627539d7393 -+34 18931 1780952156011669796 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o 5255f20e7a3fe7 -+32 25820 1780952162895346103 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o 53ad649443acadd9 -+64 30181 1780952167215611166 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o 2838e4afbb4d5b77 -+37 30302 1780952167334621899 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o 3cd06c4b4b538d40 -+36 31156 1780952168223258127 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o a557e4df80f6ac3d -+9050 41204 1780952178265313440 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o 6fdbad712194cd01 -+10115 42726 1780952179764574776 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o ef986f51deb78595 -+9854 42761 1780952179803836753 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o a4aac96cd1838d88 -+31156 44810 1780952181885687134 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o 34267f3c2c12b56 -+56 44985 1780952181852132334 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o e8b72afcd93692fe -+41204 49736 1780952186850281783 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o cf513aee4f7c84c4 -+18935 50168 1780952187200975642 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o 3cefe350df2c1f4c -+44985 55071 1780952192187703002 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o cc7b280d3c234869 -+44810 57610 1780952194698308314 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o 39e5e19c0068d6a2 -+49736 61119 1780952198213591722 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o 15153f2706568d72 -+30302 64690 1780952201665564257 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o dec1f80f4e8cac3 -+25821 65332 1780952202284331012 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o b739d57bbba91d7e -+55074 65615 1780952202703418922 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o b7b7408398a1745f -+33 70569 1780952207177504790 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o 428abd4384411808 -+42727 73429 1780952210472729823 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o 2f4f901f5db65f36 -+42762 76953 1780952213967287285 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o 30fd3355b2605f9f -+30182 81092 1780952217945465488 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o 6ddf9d06e3861b41 -+50168 83223 1780952220252883865 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o a3e8bb4b75992ecd -+61119 88426 1780952225510774225 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o 2229ec8ac7731dc -+57611 91136 1780952228166121115 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o 9fbd53f80743ce93 -+64690 93332 1780952230388593159 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o dab9cd2d8b105a01 -+65332 95715 1780952232736414655 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o c154699f96647a83 -+65615 96065 1780952233071147875 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o 58998b08d9692818 -+70569 102292 1780952239310085821 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o a97ebfd5c251d2b6 -+102293 108172 1780952245288769182 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o 27fee6e2fb42c6b1 -+76953 112025 1780952248943748306 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o 4f590e1968786570 -+73431 113012 1780952249710534829 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o dec03c889e294dfa -+83224 120405 1780952257457227223 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o 1b374eb84dc8d34c -+81092 123732 1780952260642050957 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o e784f78c68225263 -+88427 125173 1780952262269911607 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o 899a018ca6d7e585 -+96065 131786 1780952268858667684 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o 49fe140f65400de1 -+93333 132146 1780952269242048992 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o e6a241d7ee41ac9 -+95715 134561 1780952271615625129 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o eeeb47a5dcb962c0 -+91137 140536 1780952277473049289 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o 9e0c0b8db2938e0 -+132146 141895 1780952278979609603 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o 574dcbd9749d0168 -+108173 145656 1780952282667200037 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o ac3039fe6e5371e0 -+113013 148764 1780952285777909121 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o b082c7dc94d1590f -+123733 149108 1780952286169890567 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o 89e38ebe1f1d86ce -+140537 150823 1780952287888632714 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o d4380da6a81f8479 -+125173 154902 1780952291965074320 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o ead60eb41dcb93d5 -+120405 157218 1780952294222783697 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o 82bc12bff67a98af -+112026 157460 1780952294404290761 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o f7f5d260fb0864d1 -+131788 161378 1780952298453225481 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o c52a8f87941d1c27 -+134562 164648 1780952301670714935 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o e53cca3b2eb49096 -+157460 168452 1780952305551780280 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o cfd074f67a707571 -+141895 170279 1780952307333094179 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o 40fc5340f9dbd308 -+149108 172807 1780952309887590073 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o 3f3c1dcdb450478a -+148764 172833 1780952309902146738 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o ec3a664aecdc2e0e -+145656 174405 1780952311451398491 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o 3327f74a75df090b -+170279 175528 1780952312637603696 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o 8817083b9f263d3f -+150823 177134 1780952314017834548 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o 2a11243c0c122636 -+154904 182786 1780952319782649014 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o 23b3f6808311017f -+174405 184388 1780952321459433800 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o 13a47be470edd29a -+164648 184860 1780952321934264225 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o 479f08ac9e508fd9 -+177134 185106 1780952322216776187 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o e29fe925b70df3f8 -+157218 185526 1780952322533246146 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o 8a5e990e0c7237c3 -+168452 186720 1780952323814925879 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o 7a1d860ff9de24f2 -+175528 189472 1780952326571220730 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o 5c64042353977509 -+172834 192202 1780952329303719552 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o e1b458708e82042a -+161379 192567 1780952329609497589 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o 913ef71029d1146f -+184388 196013 1780952333124267578 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o 63444c69ba2d2a2 -+182786 198450 1780952335518233106 CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o 65aa210249f2d059 -+172807 199782 1780952336796101455 CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o 4e3fc6c8a48bc679 -+199782 200620 1780952337582519125 ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so 6db63677d74ffe09 -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeCache.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeCache.txt -new file mode 100644 -index 0000000..4d34aed ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeCache.txt -@@ -0,0 +1,437 @@ -+# This is the CMakeCache file. -+# For build in directory: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 -+# It was generated by CMake: /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake -+# You can edit this file to change values found and used by cmake. -+# If you do not want to change any of the values, simply exit the editor. -+# If you do want to change a value, simply edit, save, and exit the editor. -+# The syntax for the file is as follows: -+# KEY:TYPE=VALUE -+# KEY is the name of a variable in the cache. -+# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -+# VALUE is the current value for the KEY. -+ -+######################## -+# EXTERNAL cache entries -+######################## -+ -+//No help, variable specified on the command line. -+ANDROID_ABI:UNINITIALIZED=x86_64 -+ -+//No help, variable specified on the command line. -+ANDROID_NDK:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006 -+ -+//No help, variable specified on the command line. -+ANDROID_PLATFORM:UNINITIALIZED=android-24 -+ -+//No help, variable specified on the command line. -+ANDROID_STL:UNINITIALIZED=c++_shared -+ -+//No help, variable specified on the command line. -+ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON -+ -+//No help, variable specified on the command line. -+ANDROID_TOOLCHAIN:UNINITIALIZED=clang -+ -+//Path to a program. -+CMAKE_ADDR2LINE:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line -+ -+//No help, variable specified on the command line. -+CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=x86_64 -+ -+//No help, variable specified on the command line. -+CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006 -+ -+//Archiver -+CMAKE_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Flags used by the compiler during all build types. -+CMAKE_ASM_FLAGS:STRING= -+ -+//Flags used by the compiler during debug builds. -+CMAKE_ASM_FLAGS_DEBUG:STRING= -+ -+//Flags used by the compiler during release builds. -+CMAKE_ASM_FLAGS_RELEASE:STRING= -+ -+//Choose the type of build, options are: None Debug Release RelWithDebInfo -+// MinSizeRel ... -+CMAKE_BUILD_TYPE:STRING=Debug -+ -+//LLVM archiver -+CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Generate index for LLVM archive -+CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Flags used by the compiler during all build types. -+CMAKE_CXX_FLAGS:STRING= -+ -+//Flags used by the compiler during debug builds. -+CMAKE_CXX_FLAGS_DEBUG:STRING= -+ -+//Flags used by the CXX compiler during MINSIZEREL builds. -+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG -+ -+//Flags used by the compiler during release builds. -+CMAKE_CXX_FLAGS_RELEASE:STRING= -+ -+//Flags used by the CXX compiler during RELWITHDEBINFO builds. -+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG -+ -+//Libraries linked by default with all C++ applications. -+CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm -+ -+//LLVM archiver -+CMAKE_C_COMPILER_AR:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Generate index for LLVM archive -+CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Flags used by the compiler during all build types. -+CMAKE_C_FLAGS:STRING= -+ -+//Flags used by the compiler during debug builds. -+CMAKE_C_FLAGS_DEBUG:STRING= -+ -+//Flags used by the C compiler during MINSIZEREL builds. -+CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG -+ -+//Flags used by the compiler during release builds. -+CMAKE_C_FLAGS_RELEASE:STRING= -+ -+//Flags used by the C compiler during RELWITHDEBINFO builds. -+CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG -+ -+//Libraries linked by default with all C applications. -+CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm -+ -+//Path to a program. -+CMAKE_DLLTOOL:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool -+ -+//Flags used by the linker. -+CMAKE_EXE_LINKER_FLAGS:STRING= -+ -+//Flags used by the linker during DEBUG builds. -+CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= -+ -+//Flags used by the linker during MINSIZEREL builds. -+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= -+ -+//Flags used by the linker during RELEASE builds. -+CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= -+ -+//Flags used by the linker during RELWITHDEBINFO builds. -+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= -+ -+//No help, variable specified on the command line. -+CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON -+ -+//No help, variable specified on the command line. -+CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab -+ -+//Install path prefix, prepended onto install directories. -+CMAKE_INSTALL_PREFIX:PATH=/usr/local -+ -+//No help, variable specified on the command line. -+CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 -+ -+//Path to a program. -+CMAKE_LINKER:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld -+ -+//No help, variable specified on the command line. -+CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja -+ -+//Flags used by the linker during the creation of modules. -+CMAKE_MODULE_LINKER_FLAGS:STRING= -+ -+//Flags used by the linker during the creation of modules during -+// DEBUG builds. -+CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= -+ -+//Flags used by the linker during the creation of modules during -+// MINSIZEREL builds. -+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= -+ -+//Flags used by the linker during the creation of modules during -+// RELEASE builds. -+CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= -+ -+//Flags used by the linker during the creation of modules during -+// RELWITHDEBINFO builds. -+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= -+ -+//Path to a program. -+CMAKE_NM:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm -+ -+//Path to a program. -+CMAKE_OBJCOPY:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy -+ -+//Path to a program. -+CMAKE_OBJDUMP:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump -+ -+//Value Computed by CMake -+CMAKE_PROJECT_DESCRIPTION:STATIC= -+ -+//Value Computed by CMake -+CMAKE_PROJECT_HOMEPAGE_URL:STATIC= -+ -+//Value Computed by CMake -+CMAKE_PROJECT_NAME:STATIC=Reanimated -+ -+//Ranlib -+CMAKE_RANLIB:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Path to a program. -+CMAKE_READELF:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf -+ -+//No help, variable specified on the command line. -+CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 -+ -+//Flags used by the linker during the creation of dll's. -+CMAKE_SHARED_LINKER_FLAGS:STRING= -+ -+//Flags used by the linker during the creation of shared libraries -+// during DEBUG builds. -+CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= -+ -+//Flags used by the linker during the creation of shared libraries -+// during MINSIZEREL builds. -+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= -+ -+//Flags used by the linker during the creation of shared libraries -+// during RELEASE builds. -+CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= -+ -+//Flags used by the linker during the creation of shared libraries -+// during RELWITHDEBINFO builds. -+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= -+ -+//If set, runtime paths are not added when installing shared libraries, -+// but are added when building. -+CMAKE_SKIP_INSTALL_RPATH:BOOL=NO -+ -+//If set, runtime paths are not added when using shared libraries. -+CMAKE_SKIP_RPATH:BOOL=NO -+ -+//Flags used by the linker during the creation of static libraries -+// during all build types. -+CMAKE_STATIC_LINKER_FLAGS:STRING= -+ -+//Flags used by the linker during the creation of static libraries -+// during DEBUG builds. -+CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= -+ -+//Flags used by the linker during the creation of static libraries -+// during MINSIZEREL builds. -+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= -+ -+//Flags used by the linker during the creation of static libraries -+// during RELEASE builds. -+CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= -+ -+//Flags used by the linker during the creation of static libraries -+// during RELWITHDEBINFO builds. -+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= -+ -+//Strip -+CMAKE_STRIP:FILEPATH=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip -+ -+//No help, variable specified on the command line. -+CMAKE_SYSTEM_NAME:UNINITIALIZED=Android -+ -+//No help, variable specified on the command line. -+CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 -+ -+//No help, variable specified on the command line. -+CMAKE_TOOLCHAIN_FILE:UNINITIALIZED=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake -+ -+//If this value is on, makefiles will be generated without the -+// .SILENT directive, and all commands will be echoed to the console -+// during the make. This is useful for debugging only. With Visual -+// Studio IDE projects all commands are done without /nologo. -+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE -+ -+//No help, variable specified on the command line. -+IS_REANIMATED_EXAMPLE_APP:UNINITIALIZED=false -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_DIR:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=81 -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_WORKLETS_DIR:UNINITIALIZED=/Users/james/GitHub/Wallet/node_modules/react-native-worklets -+ -+//No help, variable specified on the command line. -+REANIMATED_FEATURE_FLAGS:UNINITIALIZED=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] -+ -+//No help, variable specified on the command line. -+REANIMATED_PROFILING:UNINITIALIZED=false -+ -+//No help, variable specified on the command line. -+REANIMATED_VERSION:UNINITIALIZED=4.1.6 -+ -+//The directory containing a CMake configuration file for ReactAndroid. -+ReactAndroid_DIR:PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid -+ -+//Value Computed by CMake -+Reanimated_BINARY_DIR:STATIC=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 -+ -+//Value Computed by CMake -+Reanimated_IS_TOP_LEVEL:STATIC=ON -+ -+//Value Computed by CMake -+Reanimated_SOURCE_DIR:STATIC=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -+ -+//The directory containing a CMake configuration file for fbjni. -+fbjni_DIR:PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni -+ -+//Dependencies for the target -+reanimated_LIB_DEPENDS:STATIC=general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;android;general;worklets;general;ReactAndroid::reactnative; -+ -+ -+######################## -+# INTERNAL cache entries -+######################## -+ -+//ADVANCED property for variable: CMAKE_ADDR2LINE -+CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_AR -+CMAKE_AR-ADVANCED:INTERNAL=1 -+//This is the directory where this CMakeCache.txt was created -+CMAKE_CACHEFILE_DIR:INTERNAL=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 -+//Major version of cmake used to create the current loaded cache -+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -+//Minor version of cmake used to create the current loaded cache -+CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 -+//Patch version of cmake used to create the current loaded cache -+CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 -+//Path to CMake executable. -+CMAKE_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake -+//Path to cpack program executable. -+CMAKE_CPACK_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cpack -+//Path to ctest program executable. -+CMAKE_CTEST_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ctest -+//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -+CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -+CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_FLAGS -+CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -+CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -+CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -+CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -+CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES -+CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_COMPILER_AR -+CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -+CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_FLAGS -+CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -+CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -+CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -+CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -+CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES -+CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_DLLTOOL -+CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -+//Path to cache edit program executable. -+CMAKE_EDIT_COMMAND:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake -+//Executable file format -+CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -+CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -+CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -+CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//Name of external makefile project generator. -+CMAKE_EXTRA_GENERATOR:INTERNAL= -+//Name of generator. -+CMAKE_GENERATOR:INTERNAL=Ninja -+//Generator instance identifier. -+CMAKE_GENERATOR_INSTANCE:INTERNAL= -+//Name of generator platform. -+CMAKE_GENERATOR_PLATFORM:INTERNAL= -+//Name of generator toolset. -+CMAKE_GENERATOR_TOOLSET:INTERNAL= -+//Source directory with the top level CMakeLists.txt file for this -+// project -+CMAKE_HOME_DIRECTORY:INTERNAL=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -+//Install .so files without execute permission. -+CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 -+//ADVANCED property for variable: CMAKE_LINKER -+CMAKE_LINKER-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -+CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -+CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -+CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_NM -+CMAKE_NM-ADVANCED:INTERNAL=1 -+//number of local generators -+CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_OBJCOPY -+CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_OBJDUMP -+CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -+//Platform information initialized -+CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_RANLIB -+CMAKE_RANLIB-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_READELF -+CMAKE_READELF-ADVANCED:INTERNAL=1 -+//Path to CMake installation. -+CMAKE_ROOT:INTERNAL=/Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 -+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -+CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -+CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -+CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -+CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_SKIP_RPATH -+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -+CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -+CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -+CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -+//ADVANCED property for variable: CMAKE_STRIP -+CMAKE_STRIP-ADVANCED:INTERNAL=1 -+//uname command -+CMAKE_UNAME:INTERNAL=/usr/bin/uname -+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -new file mode 100644 -index 0000000..a3a9333 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -@@ -0,0 +1,72 @@ -+set(CMAKE_C_COMPILER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") -+set(CMAKE_C_COMPILER_ARG1 "") -+set(CMAKE_C_COMPILER_ID "Clang") -+set(CMAKE_C_COMPILER_VERSION "18.0.2") -+set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -+set(CMAKE_C_COMPILER_WRAPPER "") -+set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") -+set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") -+set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") -+set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -+set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -+set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") -+set(CMAKE_C17_COMPILE_FEATURES "c_std_17") -+set(CMAKE_C23_COMPILE_FEATURES "c_std_23") -+ -+set(CMAKE_C_PLATFORM_ID "Linux") -+set(CMAKE_C_SIMULATE_ID "") -+set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") -+set(CMAKE_C_SIMULATE_VERSION "") -+ -+ -+ -+ -+set(CMAKE_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_C_COMPILER_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_C_COMPILER_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") -+set(CMAKE_MT "") -+set(CMAKE_COMPILER_IS_GNUCC ) -+set(CMAKE_C_COMPILER_LOADED 1) -+set(CMAKE_C_COMPILER_WORKS TRUE) -+set(CMAKE_C_ABI_COMPILED TRUE) -+ -+set(CMAKE_C_COMPILER_ENV_VAR "CC") -+ -+set(CMAKE_C_COMPILER_ID_RUN 1) -+set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -+set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -+set(CMAKE_C_LINKER_PREFERENCE 10) -+ -+# Save compiler ABI information. -+set(CMAKE_C_SIZEOF_DATA_PTR "8") -+set(CMAKE_C_COMPILER_ABI "ELF") -+set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") -+set(CMAKE_C_LIBRARY_ARCHITECTURE "") -+ -+if(CMAKE_C_SIZEOF_DATA_PTR) -+ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -+endif() -+ -+if(CMAKE_C_COMPILER_ABI) -+ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -+endif() -+ -+if(CMAKE_C_LIBRARY_ARCHITECTURE) -+ set(CMAKE_LIBRARY_ARCHITECTURE "") -+endif() -+ -+set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -+if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) -+ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -+endif() -+ -+ -+ -+ -+ -+set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") -+set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") -+set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") -+set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -new file mode 100644 -index 0000000..c291d1a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -@@ -0,0 +1,83 @@ -+set(CMAKE_CXX_COMPILER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") -+set(CMAKE_CXX_COMPILER_ARG1 "") -+set(CMAKE_CXX_COMPILER_ID "Clang") -+set(CMAKE_CXX_COMPILER_VERSION "18.0.2") -+set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -+set(CMAKE_CXX_COMPILER_WRAPPER "") -+set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -+set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -+set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -+set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -+set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -+set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -+set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -+set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -+set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") -+ -+set(CMAKE_CXX_PLATFORM_ID "Linux") -+set(CMAKE_CXX_SIMULATE_ID "") -+set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -+set(CMAKE_CXX_SIMULATE_VERSION "") -+ -+ -+ -+ -+set(CMAKE_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_CXX_COMPILER_AR "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_CXX_COMPILER_RANLIB "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") -+set(CMAKE_MT "") -+set(CMAKE_COMPILER_IS_GNUCXX ) -+set(CMAKE_CXX_COMPILER_LOADED 1) -+set(CMAKE_CXX_COMPILER_WORKS TRUE) -+set(CMAKE_CXX_ABI_COMPILED TRUE) -+ -+set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") -+ -+set(CMAKE_CXX_COMPILER_ID_RUN 1) -+set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) -+set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) -+ -+foreach (lang C OBJC OBJCXX) -+ if (CMAKE_${lang}_COMPILER_ID_RUN) -+ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) -+ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) -+ endforeach() -+ endif() -+endforeach() -+ -+set(CMAKE_CXX_LINKER_PREFERENCE 30) -+set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -+ -+# Save compiler ABI information. -+set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -+set(CMAKE_CXX_COMPILER_ABI "ELF") -+set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -+set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") -+ -+if(CMAKE_CXX_SIZEOF_DATA_PTR) -+ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -+endif() -+ -+if(CMAKE_CXX_COMPILER_ABI) -+ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -+endif() -+ -+if(CMAKE_CXX_LIBRARY_ARCHITECTURE) -+ set(CMAKE_LIBRARY_ARCHITECTURE "") -+endif() -+ -+set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -+if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) -+ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -+endif() -+ -+ -+ -+ -+ -+set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") -+set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") -+set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") -+set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -new file mode 100755 -index 0000000..0f980ec -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -new file mode 100755 -index 0000000..d44ce11 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -new file mode 100644 -index 0000000..62b8ebf ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -@@ -0,0 +1,15 @@ -+set(CMAKE_HOST_SYSTEM "Darwin-25.2.0") -+set(CMAKE_HOST_SYSTEM_NAME "Darwin") -+set(CMAKE_HOST_SYSTEM_VERSION "25.2.0") -+set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") -+ -+include("/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") -+ -+set(CMAKE_SYSTEM "Android-1") -+set(CMAKE_SYSTEM_NAME "Android") -+set(CMAKE_SYSTEM_VERSION "1") -+set(CMAKE_SYSTEM_PROCESSOR "x86_64") -+ -+set(CMAKE_CROSSCOMPILING "TRUE") -+ -+set(CMAKE_SYSTEM_LOADED 1) -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -new file mode 100644 -index 0000000..41b99d7 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -@@ -0,0 +1,803 @@ -+#ifdef __cplusplus -+# error "A C++ compiler has been selected for C." -+#endif -+ -+#if defined(__18CXX) -+# define ID_VOID_MAIN -+#endif -+#if defined(__CLASSIC_C__) -+/* cv-qualifiers did not exist in K&R C */ -+# define const -+# define volatile -+#endif -+ -+#if !defined(__has_include) -+/* If the compiler does not have __has_include, pretend the answer is -+ always no. */ -+# define __has_include(x) 0 -+#endif -+ -+ -+/* Version number components: V=Version, R=Revision, P=Patch -+ Version date components: YYYY=Year, MM=Month, DD=Day */ -+ -+#if defined(__INTEL_COMPILER) || defined(__ICC) -+# define COMPILER_ID "Intel" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# if defined(__GNUC__) -+# define SIMULATE_ID "GNU" -+# endif -+ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, -+ except that a few beta releases use the old format with V=2021. */ -+# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -+# if defined(__INTEL_COMPILER_UPDATE) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -+# else -+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -+# endif -+# else -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) -+ /* The third version component from --version is an update index, -+ but no macro is provided for it. */ -+# define COMPILER_VERSION_PATCH DEC(0) -+# endif -+# if defined(__INTEL_COMPILER_BUILD_DATE) -+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -+# endif -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+# if defined(__GNUC__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -+# elif defined(__GNUG__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -+# endif -+# if defined(__GNUC_MINOR__) -+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -+# endif -+# if defined(__GNUC_PATCHLEVEL__) -+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+# endif -+ -+#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -+# define COMPILER_ID "IntelLLVM" -+#if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+#endif -+#if defined(__GNUC__) -+# define SIMULATE_ID "GNU" -+#endif -+/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and -+ * later. Look for 6 digit vs. 8 digit version number to decide encoding. -+ * VVVV is no smaller than the current year when a version is released. -+ */ -+#if __INTEL_LLVM_COMPILER < 1000000L -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -+#else -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -+#endif -+#if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+#endif -+#if defined(__GNUC__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -+#elif defined(__GNUG__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -+#endif -+#if defined(__GNUC_MINOR__) -+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -+#endif -+#if defined(__GNUC_PATCHLEVEL__) -+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+#endif -+ -+#elif defined(__PATHCC__) -+# define COMPILER_ID "PathScale" -+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -+# if defined(__PATHCC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -+# endif -+ -+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -+# define COMPILER_ID "Embarcadero" -+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) -+ -+#elif defined(__BORLANDC__) -+# define COMPILER_ID "Borland" -+ /* __BORLANDC__ = 0xVRR */ -+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) -+ -+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -+# define COMPILER_ID "Watcom" -+ /* __WATCOMC__ = VVRR */ -+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -+# if (__WATCOMC__ % 10) > 0 -+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -+# endif -+ -+#elif defined(__WATCOMC__) -+# define COMPILER_ID "OpenWatcom" -+ /* __WATCOMC__ = VVRP + 1100 */ -+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -+# if (__WATCOMC__ % 10) > 0 -+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -+# endif -+ -+#elif defined(__SUNPRO_C) -+# define COMPILER_ID "SunPro" -+# if __SUNPRO_C >= 0x5100 -+ /* __SUNPRO_C = 0xVRRP */ -+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -+# else -+ /* __SUNPRO_CC = 0xVRP */ -+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -+# endif -+ -+#elif defined(__HP_cc) -+# define COMPILER_ID "HP" -+ /* __HP_cc = VVRRPP */ -+# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -+# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -+# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) -+ -+#elif defined(__DECC) -+# define COMPILER_ID "Compaq" -+ /* __DECC_VER = VVRRTPPPP */ -+# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -+# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -+# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) -+ -+#elif defined(__IBMC__) && defined(__COMPILER_VER__) -+# define COMPILER_ID "zOS" -+ /* __IBMC__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) -+ -+#elif defined(__ibmxl__) && defined(__clang__) -+# define COMPILER_ID "XLClang" -+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) -+ -+ -+#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -+# define COMPILER_ID "XL" -+ /* __IBMC__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) -+ -+#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -+# define COMPILER_ID "VisualAge" -+ /* __IBMC__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) -+ -+#elif defined(__NVCOMPILER) -+# define COMPILER_ID "NVHPC" -+# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -+# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -+# if defined(__NVCOMPILER_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -+# endif -+ -+#elif defined(__PGI) -+# define COMPILER_ID "PGI" -+# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -+# if defined(__PGIC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -+# endif -+ -+#elif defined(_CRAYC) -+# define COMPILER_ID "Cray" -+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) -+ -+#elif defined(__TI_COMPILER_VERSION__) -+# define COMPILER_ID "TI" -+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) -+ -+#elif defined(__CLANG_FUJITSU) -+# define COMPILER_ID "FujitsuClang" -+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -+# define COMPILER_VERSION_INTERNAL_STR __clang_version__ -+ -+ -+#elif defined(__FUJITSU) -+# define COMPILER_ID "Fujitsu" -+# if defined(__FCC_version__) -+# define COMPILER_VERSION __FCC_version__ -+# elif defined(__FCC_major__) -+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -+# endif -+# if defined(__fcc_version) -+# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -+# elif defined(__FCC_VERSION) -+# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -+# endif -+ -+ -+#elif defined(__ghs__) -+# define COMPILER_ID "GHS" -+/* __GHS_VERSION_NUMBER = VVVVRP */ -+# ifdef __GHS_VERSION_NUMBER -+# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -+# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -+# endif -+ -+#elif defined(__TINYC__) -+# define COMPILER_ID "TinyCC" -+ -+#elif defined(__BCC__) -+# define COMPILER_ID "Bruce" -+ -+#elif defined(__SCO_VERSION__) -+# define COMPILER_ID "SCO" -+ -+#elif defined(__ARMCC_VERSION) && !defined(__clang__) -+# define COMPILER_ID "ARMCC" -+#if __ARMCC_VERSION >= 1000000 -+ /* __ARMCC_VERSION = VRRPPPP */ -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -+#else -+ /* __ARMCC_VERSION = VRPPPP */ -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -+#endif -+ -+ -+#elif defined(__clang__) && defined(__apple_build_version__) -+# define COMPILER_ID "AppleClang" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -+# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) -+ -+#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -+# define COMPILER_ID "ARMClang" -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -+# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) -+ -+#elif defined(__clang__) -+# define COMPILER_ID "Clang" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -+# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+ -+#elif defined(__GNUC__) -+# define COMPILER_ID "GNU" -+# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -+# if defined(__GNUC_MINOR__) -+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -+# endif -+# if defined(__GNUC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+# endif -+ -+#elif defined(_MSC_VER) -+# define COMPILER_ID "MSVC" -+ /* _MSC_VER = VVRR */ -+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -+# if defined(_MSC_FULL_VER) -+# if _MSC_VER >= 1400 -+ /* _MSC_FULL_VER = VVRRPPPPP */ -+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -+# else -+ /* _MSC_FULL_VER = VVRRPPPP */ -+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -+# endif -+# endif -+# if defined(_MSC_BUILD) -+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -+# endif -+ -+#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -+# define COMPILER_ID "ADSP" -+#if defined(__VISUALDSPVERSION__) -+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -+# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -+# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -+# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -+#endif -+ -+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -+# define COMPILER_ID "IAR" -+# if defined(__VER__) && defined(__ICCARM__) -+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -+# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -+# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -+# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -+# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -+# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -+# endif -+ -+#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -+# define COMPILER_ID "SDCC" -+# if defined(__SDCC_VERSION_MAJOR) -+# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -+# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -+# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -+# else -+ /* SDCC = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -+# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -+# endif -+ -+ -+/* These compilers are either not known or too old to define an -+ identification macro. Try to identify the platform and guess that -+ it is the native compiler. */ -+#elif defined(__hpux) || defined(__hpua) -+# define COMPILER_ID "HP" -+ -+#else /* unknown compiler */ -+# define COMPILER_ID "" -+#endif -+ -+/* Construct the string literal in pieces to prevent the source from -+ getting matched. Store it in a pointer rather than an array -+ because some compilers will just produce instructions to fill the -+ array rather than assigning a pointer to a static array. */ -+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -+#ifdef SIMULATE_ID -+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -+#endif -+ -+#ifdef __QNXNTO__ -+char const* qnxnto = "INFO" ":" "qnxnto[]"; -+#endif -+ -+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -+#endif -+ -+#define STRINGIFY_HELPER(X) #X -+#define STRINGIFY(X) STRINGIFY_HELPER(X) -+ -+/* Identify known platforms by name. */ -+#if defined(__linux) || defined(__linux__) || defined(linux) -+# define PLATFORM_ID "Linux" -+ -+#elif defined(__MSYS__) -+# define PLATFORM_ID "MSYS" -+ -+#elif defined(__CYGWIN__) -+# define PLATFORM_ID "Cygwin" -+ -+#elif defined(__MINGW32__) -+# define PLATFORM_ID "MinGW" -+ -+#elif defined(__APPLE__) -+# define PLATFORM_ID "Darwin" -+ -+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -+# define PLATFORM_ID "Windows" -+ -+#elif defined(__FreeBSD__) || defined(__FreeBSD) -+# define PLATFORM_ID "FreeBSD" -+ -+#elif defined(__NetBSD__) || defined(__NetBSD) -+# define PLATFORM_ID "NetBSD" -+ -+#elif defined(__OpenBSD__) || defined(__OPENBSD) -+# define PLATFORM_ID "OpenBSD" -+ -+#elif defined(__sun) || defined(sun) -+# define PLATFORM_ID "SunOS" -+ -+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -+# define PLATFORM_ID "AIX" -+ -+#elif defined(__hpux) || defined(__hpux__) -+# define PLATFORM_ID "HP-UX" -+ -+#elif defined(__HAIKU__) -+# define PLATFORM_ID "Haiku" -+ -+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -+# define PLATFORM_ID "BeOS" -+ -+#elif defined(__QNX__) || defined(__QNXNTO__) -+# define PLATFORM_ID "QNX" -+ -+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -+# define PLATFORM_ID "Tru64" -+ -+#elif defined(__riscos) || defined(__riscos__) -+# define PLATFORM_ID "RISCos" -+ -+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -+# define PLATFORM_ID "SINIX" -+ -+#elif defined(__UNIX_SV__) -+# define PLATFORM_ID "UNIX_SV" -+ -+#elif defined(__bsdos__) -+# define PLATFORM_ID "BSDOS" -+ -+#elif defined(_MPRAS) || defined(MPRAS) -+# define PLATFORM_ID "MP-RAS" -+ -+#elif defined(__osf) || defined(__osf__) -+# define PLATFORM_ID "OSF1" -+ -+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -+# define PLATFORM_ID "SCO_SV" -+ -+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -+# define PLATFORM_ID "ULTRIX" -+ -+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -+# define PLATFORM_ID "Xenix" -+ -+#elif defined(__WATCOMC__) -+# if defined(__LINUX__) -+# define PLATFORM_ID "Linux" -+ -+# elif defined(__DOS__) -+# define PLATFORM_ID "DOS" -+ -+# elif defined(__OS2__) -+# define PLATFORM_ID "OS2" -+ -+# elif defined(__WINDOWS__) -+# define PLATFORM_ID "Windows3x" -+ -+# elif defined(__VXWORKS__) -+# define PLATFORM_ID "VxWorks" -+ -+# else /* unknown platform */ -+# define PLATFORM_ID -+# endif -+ -+#elif defined(__INTEGRITY) -+# if defined(INT_178B) -+# define PLATFORM_ID "Integrity178" -+ -+# else /* regular Integrity */ -+# define PLATFORM_ID "Integrity" -+# endif -+ -+#else /* unknown platform */ -+# define PLATFORM_ID -+ -+#endif -+ -+/* For windows compilers MSVC and Intel we can determine -+ the architecture of the compiler being used. This is because -+ the compilers do not have flags that can change the architecture, -+ but rather depend on which compiler is being used -+*/ -+#if defined(_WIN32) && defined(_MSC_VER) -+# if defined(_M_IA64) -+# define ARCHITECTURE_ID "IA64" -+ -+# elif defined(_M_ARM64EC) -+# define ARCHITECTURE_ID "ARM64EC" -+ -+# elif defined(_M_X64) || defined(_M_AMD64) -+# define ARCHITECTURE_ID "x64" -+ -+# elif defined(_M_IX86) -+# define ARCHITECTURE_ID "X86" -+ -+# elif defined(_M_ARM64) -+# define ARCHITECTURE_ID "ARM64" -+ -+# elif defined(_M_ARM) -+# if _M_ARM == 4 -+# define ARCHITECTURE_ID "ARMV4I" -+# elif _M_ARM == 5 -+# define ARCHITECTURE_ID "ARMV5I" -+# else -+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -+# endif -+ -+# elif defined(_M_MIPS) -+# define ARCHITECTURE_ID "MIPS" -+ -+# elif defined(_M_SH) -+# define ARCHITECTURE_ID "SHx" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__WATCOMC__) -+# if defined(_M_I86) -+# define ARCHITECTURE_ID "I86" -+ -+# elif defined(_M_IX86) -+# define ARCHITECTURE_ID "X86" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -+# if defined(__ICCARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__ICCRX__) -+# define ARCHITECTURE_ID "RX" -+ -+# elif defined(__ICCRH850__) -+# define ARCHITECTURE_ID "RH850" -+ -+# elif defined(__ICCRL78__) -+# define ARCHITECTURE_ID "RL78" -+ -+# elif defined(__ICCRISCV__) -+# define ARCHITECTURE_ID "RISCV" -+ -+# elif defined(__ICCAVR__) -+# define ARCHITECTURE_ID "AVR" -+ -+# elif defined(__ICC430__) -+# define ARCHITECTURE_ID "MSP430" -+ -+# elif defined(__ICCV850__) -+# define ARCHITECTURE_ID "V850" -+ -+# elif defined(__ICC8051__) -+# define ARCHITECTURE_ID "8051" -+ -+# elif defined(__ICCSTM8__) -+# define ARCHITECTURE_ID "STM8" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__ghs__) -+# if defined(__PPC64__) -+# define ARCHITECTURE_ID "PPC64" -+ -+# elif defined(__ppc__) -+# define ARCHITECTURE_ID "PPC" -+ -+# elif defined(__ARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__x86_64__) -+# define ARCHITECTURE_ID "x64" -+ -+# elif defined(__i386__) -+# define ARCHITECTURE_ID "X86" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__TI_COMPILER_VERSION__) -+# if defined(__TI_ARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__MSP430__) -+# define ARCHITECTURE_ID "MSP430" -+ -+# elif defined(__TMS320C28XX__) -+# define ARCHITECTURE_ID "TMS320C28x" -+ -+# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -+# define ARCHITECTURE_ID "TMS320C6x" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#else -+# define ARCHITECTURE_ID -+#endif -+ -+/* Convert integer to decimal digit literals. */ -+#define DEC(n) \ -+ ('0' + (((n) / 10000000)%10)), \ -+ ('0' + (((n) / 1000000)%10)), \ -+ ('0' + (((n) / 100000)%10)), \ -+ ('0' + (((n) / 10000)%10)), \ -+ ('0' + (((n) / 1000)%10)), \ -+ ('0' + (((n) / 100)%10)), \ -+ ('0' + (((n) / 10)%10)), \ -+ ('0' + ((n) % 10)) -+ -+/* Convert integer to hex digit literals. */ -+#define HEX(n) \ -+ ('0' + ((n)>>28 & 0xF)), \ -+ ('0' + ((n)>>24 & 0xF)), \ -+ ('0' + ((n)>>20 & 0xF)), \ -+ ('0' + ((n)>>16 & 0xF)), \ -+ ('0' + ((n)>>12 & 0xF)), \ -+ ('0' + ((n)>>8 & 0xF)), \ -+ ('0' + ((n)>>4 & 0xF)), \ -+ ('0' + ((n) & 0xF)) -+ -+/* Construct a string literal encoding the version number. */ -+#ifdef COMPILER_VERSION -+char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; -+ -+/* Construct a string literal encoding the version number components. */ -+#elif defined(COMPILER_VERSION_MAJOR) -+char const info_version[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', -+ COMPILER_VERSION_MAJOR, -+# ifdef COMPILER_VERSION_MINOR -+ '.', COMPILER_VERSION_MINOR, -+# ifdef COMPILER_VERSION_PATCH -+ '.', COMPILER_VERSION_PATCH, -+# ifdef COMPILER_VERSION_TWEAK -+ '.', COMPILER_VERSION_TWEAK, -+# endif -+# endif -+# endif -+ ']','\0'}; -+#endif -+ -+/* Construct a string literal encoding the internal version number. */ -+#ifdef COMPILER_VERSION_INTERNAL -+char const info_version_internal[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', -+ 'i','n','t','e','r','n','a','l','[', -+ COMPILER_VERSION_INTERNAL,']','\0'}; -+#elif defined(COMPILER_VERSION_INTERNAL_STR) -+char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -+#endif -+ -+/* Construct a string literal encoding the version number components. */ -+#ifdef SIMULATE_VERSION_MAJOR -+char const info_simulate_version[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', -+ SIMULATE_VERSION_MAJOR, -+# ifdef SIMULATE_VERSION_MINOR -+ '.', SIMULATE_VERSION_MINOR, -+# ifdef SIMULATE_VERSION_PATCH -+ '.', SIMULATE_VERSION_PATCH, -+# ifdef SIMULATE_VERSION_TWEAK -+ '.', SIMULATE_VERSION_TWEAK, -+# endif -+# endif -+# endif -+ ']','\0'}; -+#endif -+ -+/* Construct the string literal in pieces to prevent the source from -+ getting matched. Store it in a pointer rather than an array -+ because some compilers will just produce instructions to fill the -+ array rather than assigning a pointer to a static array. */ -+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; -+ -+ -+ -+#if !defined(__STDC__) && !defined(__clang__) -+# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -+# define C_VERSION "90" -+# else -+# define C_VERSION -+# endif -+#elif __STDC_VERSION__ > 201710L -+# define C_VERSION "23" -+#elif __STDC_VERSION__ >= 201710L -+# define C_VERSION "17" -+#elif __STDC_VERSION__ >= 201000L -+# define C_VERSION "11" -+#elif __STDC_VERSION__ >= 199901L -+# define C_VERSION "99" -+#else -+# define C_VERSION "90" -+#endif -+const char* info_language_standard_default = -+ "INFO" ":" "standard_default[" C_VERSION "]"; -+ -+const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -+/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ -+#if (defined(__clang__) || defined(__GNUC__) || \ -+ defined(__TI_COMPILER_VERSION__)) && \ -+ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) -+ "ON" -+#else -+ "OFF" -+#endif -+"]"; -+ -+/*--------------------------------------------------------------------------*/ -+ -+#ifdef ID_VOID_MAIN -+void main() {} -+#else -+# if defined(__CLASSIC_C__) -+int main(argc, argv) int argc; char *argv[]; -+# else -+int main(int argc, char* argv[]) -+# endif -+{ -+ int require = 0; -+ require += info_compiler[argc]; -+ require += info_platform[argc]; -+ require += info_arch[argc]; -+#ifdef COMPILER_VERSION_MAJOR -+ require += info_version[argc]; -+#endif -+#ifdef COMPILER_VERSION_INTERNAL -+ require += info_version_internal[argc]; -+#endif -+#ifdef SIMULATE_ID -+ require += info_simulate[argc]; -+#endif -+#ifdef SIMULATE_VERSION_MAJOR -+ require += info_simulate_version[argc]; -+#endif -+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -+ require += info_cray[argc]; -+#endif -+ require += info_language_standard_default[argc]; -+ require += info_language_extensions_default[argc]; -+ (void)argv; -+ return require; -+} -+#endif -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -new file mode 100644 -index 0000000..adb33eb -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -new file mode 100644 -index 0000000..25c62a8 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -@@ -0,0 +1,791 @@ -+/* This source file must have a .cpp extension so that all C++ compilers -+ recognize the extension without flags. Borland does not know .cxx for -+ example. */ -+#ifndef __cplusplus -+# error "A C compiler has been selected for C++." -+#endif -+ -+#if !defined(__has_include) -+/* If the compiler does not have __has_include, pretend the answer is -+ always no. */ -+# define __has_include(x) 0 -+#endif -+ -+ -+/* Version number components: V=Version, R=Revision, P=Patch -+ Version date components: YYYY=Year, MM=Month, DD=Day */ -+ -+#if defined(__COMO__) -+# define COMPILER_ID "Comeau" -+ /* __COMO_VERSION__ = VRR */ -+# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) -+# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) -+ -+#elif defined(__INTEL_COMPILER) || defined(__ICC) -+# define COMPILER_ID "Intel" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# if defined(__GNUC__) -+# define SIMULATE_ID "GNU" -+# endif -+ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, -+ except that a few beta releases use the old format with V=2021. */ -+# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -+# if defined(__INTEL_COMPILER_UPDATE) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -+# else -+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -+# endif -+# else -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) -+ /* The third version component from --version is an update index, -+ but no macro is provided for it. */ -+# define COMPILER_VERSION_PATCH DEC(0) -+# endif -+# if defined(__INTEL_COMPILER_BUILD_DATE) -+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -+# endif -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+# if defined(__GNUC__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -+# elif defined(__GNUG__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -+# endif -+# if defined(__GNUC_MINOR__) -+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -+# endif -+# if defined(__GNUC_PATCHLEVEL__) -+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+# endif -+ -+#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -+# define COMPILER_ID "IntelLLVM" -+#if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+#endif -+#if defined(__GNUC__) -+# define SIMULATE_ID "GNU" -+#endif -+/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and -+ * later. Look for 6 digit vs. 8 digit version number to decide encoding. -+ * VVVV is no smaller than the current year when a version is released. -+ */ -+#if __INTEL_LLVM_COMPILER < 1000000L -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -+#else -+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -+#endif -+#if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+#endif -+#if defined(__GNUC__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -+#elif defined(__GNUG__) -+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -+#endif -+#if defined(__GNUC_MINOR__) -+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -+#endif -+#if defined(__GNUC_PATCHLEVEL__) -+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+#endif -+ -+#elif defined(__PATHCC__) -+# define COMPILER_ID "PathScale" -+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -+# if defined(__PATHCC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -+# endif -+ -+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -+# define COMPILER_ID "Embarcadero" -+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) -+ -+#elif defined(__BORLANDC__) -+# define COMPILER_ID "Borland" -+ /* __BORLANDC__ = 0xVRR */ -+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) -+ -+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -+# define COMPILER_ID "Watcom" -+ /* __WATCOMC__ = VVRR */ -+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -+# if (__WATCOMC__ % 10) > 0 -+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -+# endif -+ -+#elif defined(__WATCOMC__) -+# define COMPILER_ID "OpenWatcom" -+ /* __WATCOMC__ = VVRP + 1100 */ -+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -+# if (__WATCOMC__ % 10) > 0 -+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -+# endif -+ -+#elif defined(__SUNPRO_CC) -+# define COMPILER_ID "SunPro" -+# if __SUNPRO_CC >= 0x5100 -+ /* __SUNPRO_CC = 0xVRRP */ -+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -+# else -+ /* __SUNPRO_CC = 0xVRP */ -+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -+# endif -+ -+#elif defined(__HP_aCC) -+# define COMPILER_ID "HP" -+ /* __HP_aCC = VVRRPP */ -+# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -+# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -+# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) -+ -+#elif defined(__DECCXX) -+# define COMPILER_ID "Compaq" -+ /* __DECCXX_VER = VVRRTPPPP */ -+# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -+# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -+# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) -+ -+#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -+# define COMPILER_ID "zOS" -+ /* __IBMCPP__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) -+ -+#elif defined(__ibmxl__) && defined(__clang__) -+# define COMPILER_ID "XLClang" -+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) -+ -+ -+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -+# define COMPILER_ID "XL" -+ /* __IBMCPP__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) -+ -+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -+# define COMPILER_ID "VisualAge" -+ /* __IBMCPP__ = VRP */ -+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) -+ -+#elif defined(__NVCOMPILER) -+# define COMPILER_ID "NVHPC" -+# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -+# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -+# if defined(__NVCOMPILER_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -+# endif -+ -+#elif defined(__PGI) -+# define COMPILER_ID "PGI" -+# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -+# if defined(__PGIC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -+# endif -+ -+#elif defined(_CRAYC) -+# define COMPILER_ID "Cray" -+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) -+ -+#elif defined(__TI_COMPILER_VERSION__) -+# define COMPILER_ID "TI" -+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) -+ -+#elif defined(__CLANG_FUJITSU) -+# define COMPILER_ID "FujitsuClang" -+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -+# define COMPILER_VERSION_INTERNAL_STR __clang_version__ -+ -+ -+#elif defined(__FUJITSU) -+# define COMPILER_ID "Fujitsu" -+# if defined(__FCC_version__) -+# define COMPILER_VERSION __FCC_version__ -+# elif defined(__FCC_major__) -+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -+# endif -+# if defined(__fcc_version) -+# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -+# elif defined(__FCC_VERSION) -+# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -+# endif -+ -+ -+#elif defined(__ghs__) -+# define COMPILER_ID "GHS" -+/* __GHS_VERSION_NUMBER = VVVVRP */ -+# ifdef __GHS_VERSION_NUMBER -+# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -+# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -+# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -+# endif -+ -+#elif defined(__SCO_VERSION__) -+# define COMPILER_ID "SCO" -+ -+#elif defined(__ARMCC_VERSION) && !defined(__clang__) -+# define COMPILER_ID "ARMCC" -+#if __ARMCC_VERSION >= 1000000 -+ /* __ARMCC_VERSION = VRRPPPP */ -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -+#else -+ /* __ARMCC_VERSION = VRPPPP */ -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -+#endif -+ -+ -+#elif defined(__clang__) && defined(__apple_build_version__) -+# define COMPILER_ID "AppleClang" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -+# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) -+ -+#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -+# define COMPILER_ID "ARMClang" -+ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) -+ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) -+ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -+# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) -+ -+#elif defined(__clang__) -+# define COMPILER_ID "Clang" -+# if defined(_MSC_VER) -+# define SIMULATE_ID "MSVC" -+# endif -+# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -+# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -+# if defined(_MSC_VER) -+ /* _MSC_VER = VVRR */ -+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -+# endif -+ -+#elif defined(__GNUC__) || defined(__GNUG__) -+# define COMPILER_ID "GNU" -+# if defined(__GNUC__) -+# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -+# else -+# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -+# endif -+# if defined(__GNUC_MINOR__) -+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -+# endif -+# if defined(__GNUC_PATCHLEVEL__) -+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -+# endif -+ -+#elif defined(_MSC_VER) -+# define COMPILER_ID "MSVC" -+ /* _MSC_VER = VVRR */ -+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -+# if defined(_MSC_FULL_VER) -+# if _MSC_VER >= 1400 -+ /* _MSC_FULL_VER = VVRRPPPPP */ -+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -+# else -+ /* _MSC_FULL_VER = VVRRPPPP */ -+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -+# endif -+# endif -+# if defined(_MSC_BUILD) -+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -+# endif -+ -+#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -+# define COMPILER_ID "ADSP" -+#if defined(__VISUALDSPVERSION__) -+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -+# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -+# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -+# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -+#endif -+ -+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -+# define COMPILER_ID "IAR" -+# if defined(__VER__) && defined(__ICCARM__) -+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -+# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -+# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -+# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -+# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -+# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -+# endif -+ -+ -+/* These compilers are either not known or too old to define an -+ identification macro. Try to identify the platform and guess that -+ it is the native compiler. */ -+#elif defined(__hpux) || defined(__hpua) -+# define COMPILER_ID "HP" -+ -+#else /* unknown compiler */ -+# define COMPILER_ID "" -+#endif -+ -+/* Construct the string literal in pieces to prevent the source from -+ getting matched. Store it in a pointer rather than an array -+ because some compilers will just produce instructions to fill the -+ array rather than assigning a pointer to a static array. */ -+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -+#ifdef SIMULATE_ID -+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -+#endif -+ -+#ifdef __QNXNTO__ -+char const* qnxnto = "INFO" ":" "qnxnto[]"; -+#endif -+ -+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -+#endif -+ -+#define STRINGIFY_HELPER(X) #X -+#define STRINGIFY(X) STRINGIFY_HELPER(X) -+ -+/* Identify known platforms by name. */ -+#if defined(__linux) || defined(__linux__) || defined(linux) -+# define PLATFORM_ID "Linux" -+ -+#elif defined(__MSYS__) -+# define PLATFORM_ID "MSYS" -+ -+#elif defined(__CYGWIN__) -+# define PLATFORM_ID "Cygwin" -+ -+#elif defined(__MINGW32__) -+# define PLATFORM_ID "MinGW" -+ -+#elif defined(__APPLE__) -+# define PLATFORM_ID "Darwin" -+ -+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -+# define PLATFORM_ID "Windows" -+ -+#elif defined(__FreeBSD__) || defined(__FreeBSD) -+# define PLATFORM_ID "FreeBSD" -+ -+#elif defined(__NetBSD__) || defined(__NetBSD) -+# define PLATFORM_ID "NetBSD" -+ -+#elif defined(__OpenBSD__) || defined(__OPENBSD) -+# define PLATFORM_ID "OpenBSD" -+ -+#elif defined(__sun) || defined(sun) -+# define PLATFORM_ID "SunOS" -+ -+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -+# define PLATFORM_ID "AIX" -+ -+#elif defined(__hpux) || defined(__hpux__) -+# define PLATFORM_ID "HP-UX" -+ -+#elif defined(__HAIKU__) -+# define PLATFORM_ID "Haiku" -+ -+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -+# define PLATFORM_ID "BeOS" -+ -+#elif defined(__QNX__) || defined(__QNXNTO__) -+# define PLATFORM_ID "QNX" -+ -+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -+# define PLATFORM_ID "Tru64" -+ -+#elif defined(__riscos) || defined(__riscos__) -+# define PLATFORM_ID "RISCos" -+ -+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -+# define PLATFORM_ID "SINIX" -+ -+#elif defined(__UNIX_SV__) -+# define PLATFORM_ID "UNIX_SV" -+ -+#elif defined(__bsdos__) -+# define PLATFORM_ID "BSDOS" -+ -+#elif defined(_MPRAS) || defined(MPRAS) -+# define PLATFORM_ID "MP-RAS" -+ -+#elif defined(__osf) || defined(__osf__) -+# define PLATFORM_ID "OSF1" -+ -+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -+# define PLATFORM_ID "SCO_SV" -+ -+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -+# define PLATFORM_ID "ULTRIX" -+ -+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -+# define PLATFORM_ID "Xenix" -+ -+#elif defined(__WATCOMC__) -+# if defined(__LINUX__) -+# define PLATFORM_ID "Linux" -+ -+# elif defined(__DOS__) -+# define PLATFORM_ID "DOS" -+ -+# elif defined(__OS2__) -+# define PLATFORM_ID "OS2" -+ -+# elif defined(__WINDOWS__) -+# define PLATFORM_ID "Windows3x" -+ -+# elif defined(__VXWORKS__) -+# define PLATFORM_ID "VxWorks" -+ -+# else /* unknown platform */ -+# define PLATFORM_ID -+# endif -+ -+#elif defined(__INTEGRITY) -+# if defined(INT_178B) -+# define PLATFORM_ID "Integrity178" -+ -+# else /* regular Integrity */ -+# define PLATFORM_ID "Integrity" -+# endif -+ -+#else /* unknown platform */ -+# define PLATFORM_ID -+ -+#endif -+ -+/* For windows compilers MSVC and Intel we can determine -+ the architecture of the compiler being used. This is because -+ the compilers do not have flags that can change the architecture, -+ but rather depend on which compiler is being used -+*/ -+#if defined(_WIN32) && defined(_MSC_VER) -+# if defined(_M_IA64) -+# define ARCHITECTURE_ID "IA64" -+ -+# elif defined(_M_ARM64EC) -+# define ARCHITECTURE_ID "ARM64EC" -+ -+# elif defined(_M_X64) || defined(_M_AMD64) -+# define ARCHITECTURE_ID "x64" -+ -+# elif defined(_M_IX86) -+# define ARCHITECTURE_ID "X86" -+ -+# elif defined(_M_ARM64) -+# define ARCHITECTURE_ID "ARM64" -+ -+# elif defined(_M_ARM) -+# if _M_ARM == 4 -+# define ARCHITECTURE_ID "ARMV4I" -+# elif _M_ARM == 5 -+# define ARCHITECTURE_ID "ARMV5I" -+# else -+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -+# endif -+ -+# elif defined(_M_MIPS) -+# define ARCHITECTURE_ID "MIPS" -+ -+# elif defined(_M_SH) -+# define ARCHITECTURE_ID "SHx" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__WATCOMC__) -+# if defined(_M_I86) -+# define ARCHITECTURE_ID "I86" -+ -+# elif defined(_M_IX86) -+# define ARCHITECTURE_ID "X86" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -+# if defined(__ICCARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__ICCRX__) -+# define ARCHITECTURE_ID "RX" -+ -+# elif defined(__ICCRH850__) -+# define ARCHITECTURE_ID "RH850" -+ -+# elif defined(__ICCRL78__) -+# define ARCHITECTURE_ID "RL78" -+ -+# elif defined(__ICCRISCV__) -+# define ARCHITECTURE_ID "RISCV" -+ -+# elif defined(__ICCAVR__) -+# define ARCHITECTURE_ID "AVR" -+ -+# elif defined(__ICC430__) -+# define ARCHITECTURE_ID "MSP430" -+ -+# elif defined(__ICCV850__) -+# define ARCHITECTURE_ID "V850" -+ -+# elif defined(__ICC8051__) -+# define ARCHITECTURE_ID "8051" -+ -+# elif defined(__ICCSTM8__) -+# define ARCHITECTURE_ID "STM8" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__ghs__) -+# if defined(__PPC64__) -+# define ARCHITECTURE_ID "PPC64" -+ -+# elif defined(__ppc__) -+# define ARCHITECTURE_ID "PPC" -+ -+# elif defined(__ARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__x86_64__) -+# define ARCHITECTURE_ID "x64" -+ -+# elif defined(__i386__) -+# define ARCHITECTURE_ID "X86" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#elif defined(__TI_COMPILER_VERSION__) -+# if defined(__TI_ARM__) -+# define ARCHITECTURE_ID "ARM" -+ -+# elif defined(__MSP430__) -+# define ARCHITECTURE_ID "MSP430" -+ -+# elif defined(__TMS320C28XX__) -+# define ARCHITECTURE_ID "TMS320C28x" -+ -+# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -+# define ARCHITECTURE_ID "TMS320C6x" -+ -+# else /* unknown architecture */ -+# define ARCHITECTURE_ID "" -+# endif -+ -+#else -+# define ARCHITECTURE_ID -+#endif -+ -+/* Convert integer to decimal digit literals. */ -+#define DEC(n) \ -+ ('0' + (((n) / 10000000)%10)), \ -+ ('0' + (((n) / 1000000)%10)), \ -+ ('0' + (((n) / 100000)%10)), \ -+ ('0' + (((n) / 10000)%10)), \ -+ ('0' + (((n) / 1000)%10)), \ -+ ('0' + (((n) / 100)%10)), \ -+ ('0' + (((n) / 10)%10)), \ -+ ('0' + ((n) % 10)) -+ -+/* Convert integer to hex digit literals. */ -+#define HEX(n) \ -+ ('0' + ((n)>>28 & 0xF)), \ -+ ('0' + ((n)>>24 & 0xF)), \ -+ ('0' + ((n)>>20 & 0xF)), \ -+ ('0' + ((n)>>16 & 0xF)), \ -+ ('0' + ((n)>>12 & 0xF)), \ -+ ('0' + ((n)>>8 & 0xF)), \ -+ ('0' + ((n)>>4 & 0xF)), \ -+ ('0' + ((n) & 0xF)) -+ -+/* Construct a string literal encoding the version number. */ -+#ifdef COMPILER_VERSION -+char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; -+ -+/* Construct a string literal encoding the version number components. */ -+#elif defined(COMPILER_VERSION_MAJOR) -+char const info_version[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', -+ COMPILER_VERSION_MAJOR, -+# ifdef COMPILER_VERSION_MINOR -+ '.', COMPILER_VERSION_MINOR, -+# ifdef COMPILER_VERSION_PATCH -+ '.', COMPILER_VERSION_PATCH, -+# ifdef COMPILER_VERSION_TWEAK -+ '.', COMPILER_VERSION_TWEAK, -+# endif -+# endif -+# endif -+ ']','\0'}; -+#endif -+ -+/* Construct a string literal encoding the internal version number. */ -+#ifdef COMPILER_VERSION_INTERNAL -+char const info_version_internal[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', -+ 'i','n','t','e','r','n','a','l','[', -+ COMPILER_VERSION_INTERNAL,']','\0'}; -+#elif defined(COMPILER_VERSION_INTERNAL_STR) -+char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -+#endif -+ -+/* Construct a string literal encoding the version number components. */ -+#ifdef SIMULATE_VERSION_MAJOR -+char const info_simulate_version[] = { -+ 'I', 'N', 'F', 'O', ':', -+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', -+ SIMULATE_VERSION_MAJOR, -+# ifdef SIMULATE_VERSION_MINOR -+ '.', SIMULATE_VERSION_MINOR, -+# ifdef SIMULATE_VERSION_PATCH -+ '.', SIMULATE_VERSION_PATCH, -+# ifdef SIMULATE_VERSION_TWEAK -+ '.', SIMULATE_VERSION_TWEAK, -+# endif -+# endif -+# endif -+ ']','\0'}; -+#endif -+ -+/* Construct the string literal in pieces to prevent the source from -+ getting matched. Store it in a pointer rather than an array -+ because some compilers will just produce instructions to fill the -+ array rather than assigning a pointer to a static array. */ -+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; -+ -+ -+ -+#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L -+# if defined(__INTEL_CXX11_MODE__) -+# if defined(__cpp_aggregate_nsdmi) -+# define CXX_STD 201402L -+# else -+# define CXX_STD 201103L -+# endif -+# else -+# define CXX_STD 199711L -+# endif -+#elif defined(_MSC_VER) && defined(_MSVC_LANG) -+# define CXX_STD _MSVC_LANG -+#else -+# define CXX_STD __cplusplus -+#endif -+ -+const char* info_language_standard_default = "INFO" ":" "standard_default[" -+#if CXX_STD > 202002L -+ "23" -+#elif CXX_STD > 201703L -+ "20" -+#elif CXX_STD >= 201703L -+ "17" -+#elif CXX_STD >= 201402L -+ "14" -+#elif CXX_STD >= 201103L -+ "11" -+#else -+ "98" -+#endif -+"]"; -+ -+const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -+/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ -+#if (defined(__clang__) || defined(__GNUC__) || \ -+ defined(__TI_COMPILER_VERSION__)) && \ -+ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) -+ "ON" -+#else -+ "OFF" -+#endif -+"]"; -+ -+/*--------------------------------------------------------------------------*/ -+ -+int main(int argc, char* argv[]) -+{ -+ int require = 0; -+ require += info_compiler[argc]; -+ require += info_platform[argc]; -+#ifdef COMPILER_VERSION_MAJOR -+ require += info_version[argc]; -+#endif -+#ifdef COMPILER_VERSION_INTERNAL -+ require += info_version_internal[argc]; -+#endif -+#ifdef SIMULATE_ID -+ require += info_simulate[argc]; -+#endif -+#ifdef SIMULATE_VERSION_MAJOR -+ require += info_simulate_version[argc]; -+#endif -+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -+ require += info_cray[argc]; -+#endif -+ require += info_language_standard_default[argc]; -+ require += info_language_extensions_default[argc]; -+ (void)argv; -+ return require; -+} -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -new file mode 100644 -index 0000000..89e8bdf -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeOutput.log b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeOutput.log -new file mode 100644 -index 0000000..9c70a60 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeOutput.log -@@ -0,0 +1,258 @@ -+The target system is: Android - 1 - x86_64 -+The host system is: Darwin - 25.2.0 - x86_64 -+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -+Compiler: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang -+Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; -+Id flags: -c;--target=x86_64-none-linux-android24 -+ -+The output was: -+0 -+ -+ -+Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" -+ -+The C compiler identification is Clang, found in "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" -+ -+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -+Compiler: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ -+Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; -+Id flags: -c;--target=x86_64-none-linux-android24 -+ -+The output was: -+0 -+ -+ -+Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" -+ -+The CXX compiler identification is Clang, found in "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" -+ -+Detecting C compiler ABI info compiled with the following output: -+Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_1dd07 && [1/2] Building C object CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: x86_64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o -x c /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c -+clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0 -+ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -+End of search list. -+[2/2] Linking C executable cmTC_1dd07 -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: x86_64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_1dd07 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o -+ -+ -+ -+Parsed C implicit include dir info from above output: rv=done -+ found start of include info -+ found start of implicit include info -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ end of search list found -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ -+ -+Parsed C implicit link information from above output: -+ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] -+ ignore line: [Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_1dd07 && [1/2] Building C object CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o] -+ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: x86_64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o -x c /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] -+ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0] -+ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] -+ ignore line: [#include "..." search starts here:] -+ ignore line: [#include <...> search starts here:] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ ignore line: [End of search list.] -+ ignore line: [[2/2] Linking C executable cmTC_1dd07] -+ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: x86_64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_1dd07 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore -+ arg [-znow] ==> ignore -+ arg [-zrelro] ==> ignore -+ arg [--hash-style=gnu] ==> ignore -+ arg [--eh-frame-hdr] ==> ignore -+ arg [-m] ==> ignore -+ arg [elf_x86_64] ==> ignore -+ arg [-pie] ==> ignore -+ arg [-dynamic-linker] ==> ignore -+ arg [/system/bin/linker64] ==> ignore -+ arg [-o] ==> ignore -+ arg [cmTC_1dd07] ==> ignore -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ arg [-zmax-page-size=16384] ==> ignore -+ arg [--build-id=sha1] ==> ignore -+ arg [--no-rosegment] ==> ignore -+ arg [--no-undefined-version] ==> ignore -+ arg [--fatal-warnings] ==> ignore -+ arg [--no-undefined] ==> ignore -+ arg [CMakeFiles/cmTC_1dd07.dir/CMakeCCompilerABI.c.o] ==> ignore -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [-lc] ==> lib [c] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] -+ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] -+ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] -+ implicit objs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit fwks: [] -+ -+ -+Detecting CXX compiler ABI info compiled with the following output: -+Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_f9ed9 && [1/2] Building CXX object CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: x86_64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -+clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0 -+ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -+ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -+End of search list. -+[2/2] Linking CXX executable cmTC_f9ed9 -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: x86_64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_f9ed9 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o -+ -+ -+ -+Parsed CXX implicit include dir info from above output: rv=done -+ found start of include info -+ found start of implicit include info -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ add: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ end of search list found -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ collapse include dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ -+ -+Parsed CXX implicit link information from above output: -+ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] -+ ignore line: [Change Dir: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_f9ed9 && [1/2] Building CXX object CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o] -+ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: x86_64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] -+ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin25.2.0] -+ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] -+ ignore line: [#include "..." search starts here:] -+ ignore line: [#include <...> search starts here:] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ ignore line: [ /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ ignore line: [End of search list.] -+ ignore line: [[2/2] Linking CXX executable cmTC_f9ed9] -+ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: x86_64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_f9ed9 /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore -+ arg [-znow] ==> ignore -+ arg [-zrelro] ==> ignore -+ arg [--hash-style=gnu] ==> ignore -+ arg [--eh-frame-hdr] ==> ignore -+ arg [-m] ==> ignore -+ arg [elf_x86_64] ==> ignore -+ arg [-pie] ==> ignore -+ arg [-dynamic-linker] ==> ignore -+ arg [/system/bin/linker64] ==> ignore -+ arg [-o] ==> ignore -+ arg [cmTC_f9ed9] ==> ignore -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] -+ arg [-L/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ arg [-zmax-page-size=16384] ==> ignore -+ arg [--build-id=sha1] ==> ignore -+ arg [--no-rosegment] ==> ignore -+ arg [--no-undefined-version] ==> ignore -+ arg [--fatal-warnings] ==> ignore -+ arg [--no-undefined] ==> ignore -+ arg [CMakeFiles/cmTC_f9ed9.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore -+ arg [-lc++] ==> lib [c++] -+ arg [-lm] ==> lib [m] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [-lc] ==> lib [c] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] -+ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] -+ remove lib [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] -+ collapse library dir [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] -+ implicit objs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit fwks: [] -+ -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/TargetDirectories.txt -new file mode 100644 -index 0000000..91b78cb ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/TargetDirectories.txt -@@ -0,0 +1,3 @@ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/edit_cache.dir -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/rebuild_cache.dir -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake -new file mode 100644 -index 0000000..91bb0c5 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake -@@ -0,0 +1,92 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by CMake Version 3.22 -+cmake_policy(SET CMP0009 NEW) -+ -+# REANIMATED_COMMON_CPP_SOURCES at CMakeLists.txt:40 (file) -+file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/*.cpp") -+set(OLD_GLOB -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/configs/common.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/core/CSSTransition.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/linear.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/easing/steps.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/algorithms.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/interpolators.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/keyframes.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/CSS/utils/props.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Tools/FeatureFlags.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" -+ ) -+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") -+ message("-- GLOB mismatch!") -+ file(TOUCH_NOCREATE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs") -+endif() -+ -+# REANIMATED_ANDROID_CPP_SOURCES at CMakeLists.txt:42 (file) -+file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/*.cpp") -+set(OLD_GLOB -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" -+ ) -+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") -+ message("-- GLOB mismatch!") -+ file(TOUCH_NOCREATE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs") -+endif() -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.check_cache b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.check_cache -new file mode 100644 -index 0000000..3dccd73 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.check_cache -@@ -0,0 +1 @@ -+# This file is generated by cmake for dependency checking of the CMakeCache.txt file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs -new file mode 100644 -index 0000000..2b38fac ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs -@@ -0,0 +1 @@ -+# This file is generated by CMake for checking of the VerifyGlobs.cmake file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -new file mode 100644 -index 0000000..b99f84e -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -new file mode 100644 -index 0000000..0a9b4c2 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -new file mode 100644 -index 0000000..fe20250 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -new file mode 100644 -index 0000000..1798be2 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -new file mode 100644 -index 0000000..4a657fe -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -new file mode 100644 -index 0000000..e935c5f -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -new file mode 100644 -index 0000000..2b35985 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -new file mode 100644 -index 0000000..208c082 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -new file mode 100644 -index 0000000..36ded12 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -new file mode 100644 -index 0000000..93eb193 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -new file mode 100644 -index 0000000..8af3ab9 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -new file mode 100644 -index 0000000..55888cd -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -new file mode 100644 -index 0000000..48f940a -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -new file mode 100644 -index 0000000..ffc4eb2 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -new file mode 100644 -index 0000000..6fa5f27 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -new file mode 100644 -index 0000000..c3dcb60 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -new file mode 100644 -index 0000000..a5aa63a -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -new file mode 100644 -index 0000000..f88c5fa -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -new file mode 100644 -index 0000000..782b265 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -new file mode 100644 -index 0000000..9fe9d8d -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -new file mode 100644 -index 0000000..0c5d118 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -new file mode 100644 -index 0000000..f2a97d7 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -new file mode 100644 -index 0000000..50fbff4 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -new file mode 100644 -index 0000000..ef9d409 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -new file mode 100644 -index 0000000..23fcf29 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -new file mode 100644 -index 0000000..e034a7e -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -new file mode 100644 -index 0000000..ea12dc0 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -new file mode 100644 -index 0000000..e5bef61 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -new file mode 100644 -index 0000000..6b90563 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -new file mode 100644 -index 0000000..8987f6c -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -new file mode 100644 -index 0000000..d5e2ed9 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -new file mode 100644 -index 0000000..5412a9d -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -new file mode 100644 -index 0000000..247e784 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -new file mode 100644 -index 0000000..fa13b79 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -new file mode 100644 -index 0000000..fc3f655 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -new file mode 100644 -index 0000000..f20bbce -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -new file mode 100644 -index 0000000..c1e9c07 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -new file mode 100644 -index 0000000..73512dc -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -new file mode 100644 -index 0000000..88d68ad -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -new file mode 100644 -index 0000000..837aa98 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -new file mode 100644 -index 0000000..147b1c2 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -new file mode 100644 -index 0000000..4c8cbb0 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -new file mode 100644 -index 0000000..7d665fb -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -new file mode 100644 -index 0000000..4e24552 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -new file mode 100644 -index 0000000..ccb468e -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -new file mode 100644 -index 0000000..212c44f -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -new file mode 100644 -index 0000000..ca6c43b -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -new file mode 100644 -index 0000000..fa685b1 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -new file mode 100644 -index 0000000..1ab7b91 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -new file mode 100644 -index 0000000..d0ba2d2 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -new file mode 100644 -index 0000000..cf37403 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -new file mode 100644 -index 0000000..cfcdeb5 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -new file mode 100644 -index 0000000..bbf36a5 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -new file mode 100644 -index 0000000..50a97f9 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -new file mode 100644 -index 0000000..df8cf1a -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -new file mode 100644 -index 0000000..b701314 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -new file mode 100644 -index 0000000..970f0f6 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -new file mode 100644 -index 0000000..2ba2787 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -new file mode 100644 -index 0000000..10a3838 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -new file mode 100644 -index 0000000..be02063 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -new file mode 100644 -index 0000000..5cee647 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -new file mode 100644 -index 0000000..5abf66c -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -new file mode 100644 -index 0000000..5fba5c4 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -new file mode 100644 -index 0000000..1de9065 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -new file mode 100644 -index 0000000..35c9611 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -new file mode 100644 -index 0000000..328805c -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -new file mode 100644 -index 0000000..b3e2b22 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -new file mode 100644 -index 0000000..45ae179 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -new file mode 100644 -index 0000000..4ee7ab6 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -new file mode 100644 -index 0000000..45ebd26 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -new file mode 100644 -index 0000000..002ec22 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/rules.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/rules.ninja -new file mode 100644 -index 0000000..be75730 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/rules.ninja -@@ -0,0 +1,73 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by "Ninja" Generator, CMake Version 3.22 -+ -+# This file contains all the rules used to get the outputs files -+# built from the input files. -+# It is included in the main 'build.ninja'. -+ -+# ============================================================================= -+# Project: Reanimated -+# Configurations: Debug -+# ============================================================================= -+# ============================================================================= -+ -+############################################# -+# Rule for compiling CXX files. -+ -+rule CXX_COMPILER__reanimated_Debug -+ depfile = $DEP_FILE -+ deps = gcc -+ command = /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in -+ description = Building CXX object $out -+ -+ -+############################################# -+# Rule for linking CXX shared library. -+ -+rule CXX_SHARED_LIBRARY_LINKER__reanimated_Debug -+ command = $PRE_LINK && /Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD -+ description = Linking CXX shared library $TARGET_FILE -+ restat = $RESTAT -+ -+ -+############################################# -+# Rule for running custom commands. -+ -+rule CUSTOM_COMMAND -+ command = $COMMAND -+ description = $DESC -+ -+ -+############################################# -+# Rule for re-running cmake. -+ -+rule RERUN_CMAKE -+ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 -+ description = Re-running CMake... -+ generator = 1 -+ -+ -+############################################# -+# Rule for re-checking globbed directories. -+ -+rule VERIFY_GLOBS -+ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake -+ description = Re-checking globbed directories... -+ generator = 1 -+ -+ -+############################################# -+# Rule for cleaning all built files. -+ -+rule CLEAN -+ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS -+ description = Cleaning all built files... -+ -+ -+############################################# -+# Rule for printing all primary targets available. -+ -+rule HELP -+ command = /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets -+ description = All primary targets available: -+ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/additional_project_files.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/additional_project_files.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json -new file mode 100644 -index 0000000..98c3a84 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json -@@ -0,0 +1,47 @@ -+{ -+ "buildFiles": [ -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "reanimated::@6890427a1f51a3e7e1df": { -+ "toolchain": "toolchain", -+ "abi": "x86_64", -+ "artifactName": "reanimated", -+ "output": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so", -+ "runtimeFiles": [ -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", -+ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so", -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" -+ ] -+ } -+ }, -+ "toolchains": { -+ "toolchain": { -+ "cCompilerExecutable": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", -+ "cppCompilerExecutable": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" -+ } -+ }, -+ "cFileExtensions": [], -+ "cppFileExtensions": [ -+ "cpp" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build_mini.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build_mini.json -new file mode 100644 -index 0000000..2286009 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build_mini.json -@@ -0,0 +1,36 @@ -+{ -+ "buildFiles": [ -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "reanimated::@6890427a1f51a3e7e1df": { -+ "artifactName": "reanimated", -+ "abi": "x86_64", -+ "output": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so", -+ "runtimeFiles": [ -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", -+ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so", -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" -+ ] -+ } -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build.ninja -new file mode 100644 -index 0000000..1251fbd ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build.ninja -@@ -0,0 +1,727 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by "Ninja" Generator, CMake Version 3.22 -+ -+# This file contains all the build statements describing the -+# compilation DAG. -+ -+# ============================================================================= -+# Write statements declared in CMakeLists.txt: -+# -+# Which is the root file. -+# ============================================================================= -+ -+# ============================================================================= -+# Project: Reanimated -+# Configurations: Debug -+# ============================================================================= -+ -+############################################# -+# Minimal version of Ninja required by this file -+ -+ninja_required_version = 1.8 -+ -+ -+############################################# -+# Set configuration variable for custom commands. -+ -+CONFIGURATION = Debug -+# ============================================================================= -+# Include auxiliary files. -+ -+ -+############################################# -+# Include rules file. -+ -+include CMakeFiles/rules.ninja -+ -+# ============================================================================= -+ -+############################################# -+# Logical path to working directory; prefix for absolute paths. -+ -+cmake_ninja_workdir = /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/ -+# ============================================================================= -+# Object build statements for SHARED_LIBRARY target reanimated -+ -+ -+############################################# -+# Order-only phony target for reanimated -+ -+build cmake_object_order_depends_target_reanimated: phony || CMakeFiles/reanimated.dir -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools -+ -+build CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools -+ -+build CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android -+ -+build CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o: CXX_COMPILER__reanimated_Debug /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp || cmake_object_order_depends_target_reanimated -+ DEFINES = -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -+ DEP_FILE = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\"ReactNative\" -std=gnu++20 -+ INCLUDES = -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ OBJECT_FILE_DIR = CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android -+ -+ -+# ============================================================================= -+# Link build statements for SHARED_LIBRARY target reanimated -+ -+ -+############################################# -+# Link the shared library ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so -+ -+build ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so: CXX_SHARED_LIBRARY_LINKER__reanimated_Debug CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o | /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so /Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so -+ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS="[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -+ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections -+ LINK_LIBRARIES = -llog /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so -landroid /Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so -latomic -lm -+ OBJECT_DIR = CMakeFiles/reanimated.dir -+ POST_BUILD = : -+ PRE_LINK = : -+ SONAME = libreanimated.so -+ SONAME_FLAG = -Wl,-soname, -+ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so -+ TARGET_PDB = reanimated.so.dbg -+ -+ -+############################################# -+# Utility command for edit_cache -+ -+build CMakeFiles/edit_cache.util: CUSTOM_COMMAND -+ COMMAND = cd /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 && /Users/james/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 -+ DESC = Running CMake cache editor... -+ pool = console -+ restat = 1 -+ -+build edit_cache: phony CMakeFiles/edit_cache.util -+ -+ -+############################################# -+# Utility command for rebuild_cache -+ -+build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND -+ COMMAND = cd /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 && /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 -+ DESC = Running CMake to regenerate build system... -+ pool = console -+ restat = 1 -+ -+build rebuild_cache: phony CMakeFiles/rebuild_cache.util -+ -+# ============================================================================= -+# Target aliases. -+ -+build libreanimated.so: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so -+ -+build reanimated: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so -+ -+# ============================================================================= -+# Folder targets. -+ -+# ============================================================================= -+ -+############################################# -+# Folder: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 -+ -+build all: phony ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so -+ -+# ============================================================================= -+# Built-in targets -+ -+ -+############################################# -+# Phony target to force glob verification run. -+ -+build /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake_force: phony -+ -+ -+############################################# -+# Re-run CMake to check if globbed directories changed. -+ -+build /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake_force -+ pool = console -+ restat = 1 -+ -+ -+############################################# -+# Re-run CMake if any of its inputs changed. -+ -+build build.ninja: RERUN_CMAKE /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/cmake.verify_globs | ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -+ pool = console -+ -+ -+############################################# -+# A missing CMake input file is not an error. -+ -+build ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/CMakeFiles/VerifyGlobs.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/cmake-utils/react-native-flags.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/james/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony -+ -+ -+############################################# -+# Clean all the built files. -+ -+build clean: CLEAN -+ -+ -+############################################# -+# Print all primary targets available. -+ -+build help: HELP -+ -+ -+############################################# -+# Make the all target the default. -+ -+default all -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build_file_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build_file_index.txt -new file mode 100644 -index 0000000..3719726 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build_file_index.txt -@@ -0,0 +1,5 @@ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/cmake_install.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/cmake_install.cmake -new file mode 100644 -index 0000000..6288119 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/cmake_install.cmake -@@ -0,0 +1,54 @@ -+# Install script for directory: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -+ -+# Set the install prefix -+if(NOT DEFINED CMAKE_INSTALL_PREFIX) -+ set(CMAKE_INSTALL_PREFIX "/usr/local") -+endif() -+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") -+ -+# Set the install configuration name. -+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) -+ if(BUILD_TYPE) -+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" -+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") -+ else() -+ set(CMAKE_INSTALL_CONFIG_NAME "Debug") -+ endif() -+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -+endif() -+ -+# Set the component getting installed. -+if(NOT CMAKE_INSTALL_COMPONENT) -+ if(COMPONENT) -+ message(STATUS "Install component: \"${COMPONENT}\"") -+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") -+ else() -+ set(CMAKE_INSTALL_COMPONENT) -+ endif() -+endif() -+ -+# Install shared libraries without execute permission? -+if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) -+ set(CMAKE_INSTALL_SO_NO_EXE "0") -+endif() -+ -+# Is this installation the result of a crosscompile? -+if(NOT DEFINED CMAKE_CROSSCOMPILING) -+ set(CMAKE_CROSSCOMPILING "TRUE") -+endif() -+ -+# Set default install directory permissions. -+if(NOT DEFINED CMAKE_OBJDUMP) -+ set(CMAKE_OBJDUMP "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") -+endif() -+ -+if(CMAKE_INSTALL_COMPONENT) -+ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") -+else() -+ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -+endif() -+ -+string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT -+ "${CMAKE_INSTALL_MANIFEST_FILES}") -+file(WRITE "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/${CMAKE_INSTALL_MANIFEST}" -+ "${CMAKE_INSTALL_MANIFEST_CONTENT}") -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json -new file mode 100644 -index 0000000..6214a20 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json -@@ -0,0 +1,357 @@ -+[ -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json.bin -new file mode 100644 -index 0000000..10c0dbc -Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json.bin differ -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/configure_fingerprint.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/configure_fingerprint.bin -new file mode 100644 -index 0000000..5631a85 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/configure_fingerprint.bin -@@ -0,0 +1,38 @@ -+C/C++ Structured Log -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmakeC -+A -+?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  3 3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake  3 Ž3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake  3 3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake  3 Ž3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/additional_project_files.txt  3  3 -+~ -+|/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json  3 3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build_mini.json  3 3r -+p -+n/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build.ninja  3  3v -+t -+r/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build.ninja.txt  3 -+{ -+y -+w/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/build_file_index.txt  3  Ž3| -+z -+x/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json  3  3 -+~ -+|/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json.bin  3  3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/metadata_generation_command.txt  3 Ž3y -+w -+u/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/prefab_config.json  3 3~ -+| -+z/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/symbol_folder_index.txt  3 y Ž3Z -+X -+V/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt  3 3 -+ -+/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  3 -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/metadata_generation_command.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/metadata_generation_command.txt -new file mode 100644 -index 0000000..0e83860 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/metadata_generation_command.txt -@@ -0,0 +1,29 @@ -+ -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android -+-DCMAKE_SYSTEM_NAME=Android -+-DCMAKE_EXPORT_COMPILE_COMMANDS=ON -+-DCMAKE_SYSTEM_VERSION=24 -+-DANDROID_PLATFORM=android-24 -+-DANDROID_ABI=x86_64 -+-DCMAKE_ANDROID_ARCH_ABI=x86_64 -+-DANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_ANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_TOOLCHAIN_FILE=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 -+-DCMAKE_BUILD_TYPE=Debug -+-DCMAKE_FIND_ROOT_PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab -+-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 -+-GNinja -+-DANDROID_STL=c++_shared -+-DREACT_NATIVE_MINOR_VERSION=81 -+-DANDROID_TOOLCHAIN=clang -+-DREACT_NATIVE_DIR=/Users/james/GitHub/Wallet/node_modules/react-native -+-DREACT_NATIVE_WORKLETS_DIR=/Users/james/GitHub/Wallet/node_modules/react-native-worklets -+-DIS_REANIMATED_EXAMPLE_APP=false -+-DREANIMATED_PROFILING=false -+-DREANIMATED_VERSION=4.1.6 -+-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -+-DREANIMATED_FEATURE_FLAGS=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] -+ Build command args: [] -+ Version: 2 -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/prefab_config.json b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/prefab_config.json -new file mode 100644 -index 0000000..06998f9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/prefab_config.json -@@ -0,0 +1,9 @@ -+{ -+ "enabled": true, -+ "prefabPath": "/Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", -+ "packages": [ -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/symbol_folder_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/symbol_folder_index.txt -new file mode 100644 -index 0000000..62bb889 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/symbol_folder_index.txt -@@ -0,0 +1 @@ -+/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json -new file mode 100644 -index 0000000..3994cec ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json -@@ -0,0 +1,357 @@ -+[ -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json -new file mode 100644 -index 0000000..6214a20 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json -@@ -0,0 +1,357 @@ -+[ -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" -+}, -+{ -+ "directory": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "command": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DRN_SERIALIZABLE_STATE -Dreanimated_EXPORTS -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/yoga -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/callinvoker -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/runtimeexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/jsiexecutor -I/Users/james/GitHub/Wallet/node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/Common/cpp -I/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/src/main/cpp -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/jsi/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=81 -DREANIMATED_VERSION=4.1.6 -DREANIMATED_FEATURE_FLAGS=\"[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\" -fno-omit-frame-pointer -fstack-protector-all -fvisibility=hidden -ffunction-sections -fdata-sections -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -Wall -Werror -fexceptions -frtti -std=c++20 -DLOG_TAG=\\\"ReactNative\\\" -std=gnu++20 -o CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -c /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", -+ "file": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/CMakeLists.txt b/node_modules/react-native-reanimated/android/CMakeLists.txt -index c4e4df9..609fe30 100644 ---- a/node_modules/react-native-reanimated/android/CMakeLists.txt -+++ b/node_modules/react-native-reanimated/android/CMakeLists.txt -@@ -81,11 +81,13 @@ endif() - - add_library(worklets SHARED IMPORTED) - -+# AGP 8.x+ moved cmake intermediates to cxx/{type}/{hash}/obj/ (hash is unpredictable). -+# Use the prefab_package path instead, which is stable and available before this build runs. - set_target_properties( - worklets - PROPERTIES - IMPORTED_LOCATION -- "${REACT_NATIVE_WORKLETS_DIR}/android/build/intermediates/cmake/${BUILD_TYPE}/obj/${ANDROID_ABI}/libworklets.so" -+ "${REACT_NATIVE_WORKLETS_DIR}/android/build/intermediates/prefab_package/${BUILD_TYPE}/prefab/modules/worklets/libs/android.${ANDROID_ABI}/libworklets.so" - ) - - set_target_properties(reanimated PROPERTIES LINKER_LANGUAGE CXX) -diff --git a/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/results.bin b/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/results.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/results.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/transformed/classes/classes_dex/classes.dex -new file mode 100644 -index 0000000..bbb8ae0 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/7ff04e38f40195ca122814d5785ad662/transformed/classes/classes_dex/classes.dex differ -diff --git a/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/results.bin b/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/results.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/results.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/transformed/classes/classes_dex/classes.dex -new file mode 100644 -index 0000000..bbb8ae0 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/b057aa053041012b45d79c6078eb4c89/transformed/classes/classes_dex/classes.dex differ -diff --git a/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/results.bin b/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/results.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/results.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/transformed/classes/classes_dex/classes.dex -new file mode 100644 -index 0000000..bbb8ae0 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/fd2e2f7da3b2cac7493f57ad8a292b41/transformed/classes/classes_dex/classes.dex differ -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/buildConfig/debug/com/swmansion/reanimated/BuildConfig.java b/node_modules/react-native-reanimated/android/build/generated/source/buildConfig/debug/com/swmansion/reanimated/BuildConfig.java -new file mode 100644 -index 0000000..27de2a0 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/buildConfig/debug/com/swmansion/reanimated/BuildConfig.java -@@ -0,0 +1,20 @@ -+/** -+ * Automatically generated file. DO NOT MODIFY -+ */ -+package com.swmansion.reanimated; -+ -+public final class BuildConfig { -+ public static final boolean DEBUG = Boolean.parseBoolean("true"); -+ public static final String LIBRARY_PACKAGE_NAME = "com.swmansion.reanimated"; -+ public static final String BUILD_TYPE = "debug"; -+ // Field from default config. -+ public static final int EXOPACKAGE_FLAGS = 0; -+ // Field from default config. -+ public static final boolean IS_INTERNAL_BUILD = false; -+ // Field from default config. -+ public static final int REACT_NATIVE_MINOR_VERSION = 81; -+ // Field from default config. -+ public static final boolean REANIMATED_PROFILING = false; -+ // Field from default config. -+ public static final String REANIMATED_VERSION_JAVA = "4.1.6"; -+} -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/java/com/swmansion/reanimated/NativeReanimatedModuleSpec.java b/node_modules/react-native-reanimated/android/build/generated/source/codegen/java/com/swmansion/reanimated/NativeReanimatedModuleSpec.java -new file mode 100644 -index 0000000..d26d996 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/java/com/swmansion/reanimated/NativeReanimatedModuleSpec.java -@@ -0,0 +1,37 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleJavaSpec.js -+ * -+ * @nolint -+ */ -+ -+package com.swmansion.reanimated; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+import com.facebook.react.bridge.ReactApplicationContext; -+import com.facebook.react.bridge.ReactContextBaseJavaModule; -+import com.facebook.react.bridge.ReactMethod; -+import com.facebook.react.turbomodule.core.interfaces.TurboModule; -+import javax.annotation.Nonnull; -+ -+public abstract class NativeReanimatedModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "ReanimatedModule"; -+ -+ public NativeReanimatedModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod(isBlockingSynchronousMethod = true) -+ @DoNotStrip -+ public abstract boolean installTurboModule(); -+} -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/CMakeLists.txt b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/CMakeLists.txt -new file mode 100644 -index 0000000..1da5ca6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/CMakeLists.txt -@@ -0,0 +1,28 @@ -+# Copyright (c) Meta Platforms, Inc. and affiliates. -+# -+# This source code is licensed under the MIT license found in the -+# LICENSE file in the root directory of this source tree. -+ -+cmake_minimum_required(VERSION 3.13) -+set(CMAKE_VERBOSE_MAKEFILE on) -+ -+file(GLOB react_codegen_SRCS CONFIGURE_DEPENDS *.cpp react/renderer/components/rnreanimated/*.cpp) -+ -+add_library( -+ react_codegen_rnreanimated -+ OBJECT -+ ${react_codegen_SRCS} -+) -+ -+target_include_directories(react_codegen_rnreanimated PUBLIC . react/renderer/components/rnreanimated) -+ -+target_link_libraries( -+ react_codegen_rnreanimated -+ fbjni -+ jsi -+ # We need to link different libraries based on whether we are building rncore or not, that's necessary -+ # because we want to break a circular dependency between react_codegen_rncore and reactnative -+ reactnative -+) -+ -+target_compile_reactnative_options(react_codegen_rnreanimated PRIVATE) -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.cpp -new file mode 100644 -index 0000000..5cf68be ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.cpp -@@ -0,0 +1,22 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateComponentDescriptorCpp.js -+ */ -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+void rnreanimated_registerComponentDescriptorsFromCodegen( -+ std::shared_ptr registry) { -+ -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.h -new file mode 100644 -index 0000000..a65e2b9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ComponentDescriptors.h -@@ -0,0 +1,24 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateComponentDescriptorH.js -+ */ -+ -+#pragma once -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+ -+ -+void rnreanimated_registerComponentDescriptorsFromCodegen( -+ std::shared_ptr registry); -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.cpp -new file mode 100644 -index 0000000..6d42306 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.cpp -@@ -0,0 +1,16 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateEventEmitterCpp.js -+ */ -+ -+#include -+ -+ -+namespace facebook::react { -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.h -new file mode 100644 -index 0000000..2845a63 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/EventEmitters.h -@@ -0,0 +1,17 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateEventEmitterH.js -+ */ -+#pragma once -+ -+#include -+ -+ -+namespace facebook::react { -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.cpp -new file mode 100644 -index 0000000..6b396e9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.cpp -@@ -0,0 +1,19 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GeneratePropsCpp.js -+ */ -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.h -new file mode 100644 -index 0000000..870864b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/Props.h -@@ -0,0 +1,18 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GeneratePropsH.js -+ */ -+#pragma once -+ -+ -+ -+namespace facebook::react { -+ -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.cpp -new file mode 100644 -index 0000000..8bdfad6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.cpp -@@ -0,0 +1,17 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateShadowNodeCpp.js -+ */ -+ -+#include -+ -+namespace facebook::react { -+ -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.h -new file mode 100644 -index 0000000..66a300f ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/ShadowNodes.h -@@ -0,0 +1,23 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateShadowNodeH.js -+ */ -+ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.cpp -new file mode 100644 -index 0000000..cbb65ea ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.cpp -@@ -0,0 +1,16 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateStateCpp.js -+ */ -+#include -+ -+namespace facebook::react { -+ -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.h -new file mode 100644 -index 0000000..2e55bce ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/States.h -@@ -0,0 +1,20 @@ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateStateH.js -+ */ -+#pragma once -+ -+#include -+#ifdef RN_SERIALIZABLE_STATE -+#include -+#endif -+ -+namespace facebook::react { -+ -+ -+ -+} // namespace facebook::react -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI-generated.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI-generated.cpp -new file mode 100644 -index 0000000..9564610 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI-generated.cpp -@@ -0,0 +1,26 @@ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleCpp.js -+ */ -+ -+#include "rnreanimatedJSI.h" -+ -+namespace facebook::react { -+ -+static jsi::Value __hostFunction_NativeReanimatedModuleCxxSpecJSI_installTurboModule(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->installTurboModule( -+ rt -+ ); -+} -+ -+NativeReanimatedModuleCxxSpecJSI::NativeReanimatedModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("ReanimatedModule", jsInvoker) { -+ methodMap_["installTurboModule"] = MethodMetadata {0, __hostFunction_NativeReanimatedModuleCxxSpecJSI_installTurboModule}; -+} -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI.h -new file mode 100644 -index 0000000..78e7faa ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/react/renderer/components/rnreanimated/rnreanimatedJSI.h -@@ -0,0 +1,71 @@ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleH.js -+ */ -+ -+#pragma once -+ -+#include -+#include -+ -+namespace facebook::react { -+ -+ -+ class JSI_EXPORT NativeReanimatedModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeReanimatedModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual bool installTurboModule(jsi::Runtime &rt) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeReanimatedModuleCxxSpec : public TurboModule { -+public: -+ jsi::Value create(jsi::Runtime &rt, const jsi::PropNameID &propName) override { -+ return delegate_.create(rt, propName); -+ } -+ -+ std::vector getPropertyNames(jsi::Runtime& runtime) override { -+ return delegate_.getPropertyNames(runtime); -+ } -+ -+ static constexpr std::string_view kModuleName = "ReanimatedModule"; -+ -+protected: -+ NativeReanimatedModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeReanimatedModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeReanimatedModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeReanimatedModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ bool installTurboModule(jsi::Runtime &rt) override { -+ static_assert( -+ bridging::getParameterCount(&T::installTurboModule) == 1, -+ "Expected installTurboModule(...) to have 1 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::installTurboModule, jsInvoker_, instance_); -+ } -+ -+ private: -+ friend class NativeReanimatedModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated-generated.cpp b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated-generated.cpp -new file mode 100644 -index 0000000..8872c89 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated-generated.cpp -@@ -0,0 +1,32 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleJniCpp.js -+ */ -+ -+#include "rnreanimated.h" -+ -+namespace facebook::react { -+ -+static facebook::jsi::Value __hostFunction_NativeReanimatedModuleSpecJSI_installTurboModule(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, BooleanKind, "installTurboModule", "()Z", args, count, cachedMethodId); -+} -+ -+NativeReanimatedModuleSpecJSI::NativeReanimatedModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["installTurboModule"] = MethodMetadata {0, __hostFunction_NativeReanimatedModuleSpecJSI_installTurboModule}; -+} -+ -+std::shared_ptr rnreanimated_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms) { -+ if (moduleName == "ReanimatedModule") { -+ return std::make_shared(params); -+ } -+ return nullptr; -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated.h b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated.h -new file mode 100644 -index 0000000..01dfea3 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/rnreanimated.h -@@ -0,0 +1,31 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleJniH.js -+ */ -+ -+#pragma once -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+/** -+ * JNI C++ class for module 'NativeReanimatedModule' -+ */ -+class JSI_EXPORT NativeReanimatedModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeReanimatedModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+ -+JSI_EXPORT -+std::shared_ptr rnreanimated_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms); -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-reanimated/android/build/generated/source/codegen/schema.json b/node_modules/react-native-reanimated/android/build/generated/source/codegen/schema.json -new file mode 100644 -index 0000000..f8fcc5e ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/generated/source/codegen/schema.json -@@ -0,0 +1 @@ -+{"libraryName":"","modules":{"NativeReanimatedModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"installTurboModule","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"BooleanTypeAnnotation"},"params":[]}}]},"moduleName":"ReanimatedModule"}}} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml -new file mode 100644 -index 0000000..ed5d55a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml -@@ -0,0 +1,7 @@ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json -new file mode 100644 -index 0000000..0c0f867 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json -@@ -0,0 +1,18 @@ -+{ -+ "version": 3, -+ "artifactType": { -+ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", -+ "kind": "Directory" -+ }, -+ "applicationId": "com.swmansion.reanimated", -+ "variantName": "debug", -+ "elements": [ -+ { -+ "type": "SINGLE", -+ "filters": [], -+ "attributes": [], -+ "outputFile": "AndroidManifest.xml" -+ } -+ ], -+ "elementType": "File" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-reanimated/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties -new file mode 100644 -index 0000000..1211b1e ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties -@@ -0,0 +1,6 @@ -+aarFormatVersion=1.0 -+aarMetadataVersion=1.0 -+minCompileSdk=1 -+minCompileSdkExtension=0 -+minAndroidGradlePluginVersion=1.0.0 -+coreLibraryDesugaringEnabled=false -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-reanimated/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json -new file mode 100644 -index 0000000..9e26dfe ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json -@@ -0,0 +1 @@ -+{} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so -new file mode 100755 -index 0000000..2c72c65 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so -new file mode 100644 -index 0000000..aadd325 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so -new file mode 100644 -index 0000000..52c310d -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so -new file mode 100644 -index 0000000..11165ed -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreanimated.so -new file mode 100755 -index 0000000..bd83cd4 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreanimated.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so -new file mode 100755 -index 0000000..c8d0c8e -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so -new file mode 100755 -index 0000000..8e3a868 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so -new file mode 100644 -index 0000000..68ecbda -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so -new file mode 100644 -index 0000000..1372005 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so -new file mode 100644 -index 0000000..9f300cf -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreanimated.so -new file mode 100755 -index 0000000..81f39dc -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreanimated.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so -new file mode 100755 -index 0000000..5b9b9c7 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-reanimated/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar -new file mode 100644 -index 0000000..c8169f1 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-reanimated/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar -new file mode 100644 -index 0000000..7a4f2e0 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-reanimated/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_command_reanimated b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_command_reanimated -new file mode 100755 -index 0000000..953bbfd ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_command_reanimated -@@ -0,0 +1,4 @@ -+/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -C \ -+ /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a \ -+ reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_model.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_model.json -new file mode 100644 -index 0000000..fe6d0a9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_model.json -@@ -0,0 +1,229 @@ -+{ -+ "info": { -+ "name": "arm64-v8a", -+ "bitness": 64, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "arm64", -+ "triple": "aarch64-linux-android", -+ "llvmTriple": "aarch64-none-linux-android" -+ }, -+ "cxxBuildFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "soFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a", -+ "soRepublishFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a", -+ "abiPlatformVersion": 24, -+ "cmake": { -+ "effectiveConfiguration": { -+ "inheritEnvironments": [], -+ "variables": [] -+ } -+ }, -+ "variant": { -+ "buildSystemArgumentList": [ -+ "-DANDROID_STL\u003dc++_shared", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d81", -+ "-DANDROID_TOOLCHAIN\u003dclang", -+ "-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native", -+ "-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets", -+ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", -+ "-DREANIMATED_PROFILING\u003dfalse", -+ "-DREANIMATED_VERSION\u003d4.1.6", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", -+ "-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -+ ], -+ "cFlagsList": [], -+ "cppFlagsList": [], -+ "variantName": "debug", -+ "isDebuggableEnabled": true, -+ "validAbiList": [ -+ "arm64-v8a", -+ "x86_64" -+ ], -+ "buildTargetSet": [ -+ "reanimated" -+ ], -+ "implicitBuildTargetSet": [ -+ "reanimated" -+ ], -+ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", -+ "module": { -+ "cxxFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx", -+ "intermediatesBaseFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates", -+ "intermediatesFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx", -+ "gradleModulePathName": ":react-native-reanimated", -+ "moduleRootFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android", -+ "moduleBuildFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build.gradle", -+ "makeFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "buildSystem": "CMAKE", -+ "ndkFolder": "/Users/james/Library/Android/sdk/ndk/27.1.12297006", -+ "ndkFolderBeforeSymLinking": "/Users/james/Library/Android/sdk/ndk/27.1.12297006", -+ "ndkVersion": "27.1.12297006", -+ "ndkSupportedAbiList": [ -+ "armeabi-v7a", -+ "arm64-v8a", -+ "riscv64", -+ "x86", -+ "x86_64" -+ ], -+ "ndkDefaultAbiList": [ -+ "armeabi-v7a", -+ "arm64-v8a", -+ "x86", -+ "x86_64" -+ ], -+ "ndkDefaultStl": "LIBCXX_STATIC", -+ "ndkMetaPlatforms": { -+ "min": 21, -+ "max": 35, -+ "aliases": { -+ "20": 19, -+ "25": 24, -+ "J": 16, -+ "J-MR1": 17, -+ "J-MR2": 18, -+ "K": 19, -+ "L": 21, -+ "L-MR1": 22, -+ "M": 23, -+ "N": 24, -+ "N-MR1": 24, -+ "O": 26, -+ "O-MR1": 27, -+ "P": 28, -+ "Q": 29, -+ "R": 30, -+ "S": 31, -+ "Sv2": 32, -+ "Tiramisu": 33, -+ "UpsideDownCake": 34, -+ "VanillaIceCream": 35 -+ } -+ }, -+ "ndkMetaAbiList": [ -+ { -+ "name": "armeabi-v7a", -+ "bitness": 32, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "arm", -+ "triple": "arm-linux-androideabi", -+ "llvmTriple": "armv7-none-linux-androideabi" -+ }, -+ { -+ "name": "arm64-v8a", -+ "bitness": 64, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "arm64", -+ "triple": "aarch64-linux-android", -+ "llvmTriple": "aarch64-none-linux-android" -+ }, -+ { -+ "name": "riscv64", -+ "bitness": 64, -+ "isDefault": false, -+ "isDeprecated": false, -+ "architecture": "riscv64", -+ "triple": "riscv64-linux-android", -+ "llvmTriple": "riscv64-none-linux-android" -+ }, -+ { -+ "name": "x86", -+ "bitness": 32, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "x86", -+ "triple": "i686-linux-android", -+ "llvmTriple": "i686-none-linux-android" -+ }, -+ { -+ "name": "x86_64", -+ "bitness": 64, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "x86_64", -+ "triple": "x86_64-linux-android", -+ "llvmTriple": "x86_64-none-linux-android" -+ } -+ ], -+ "cmakeToolchainFile": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "cmake": { -+ "cmakeExe": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cmakeVersionFromDsl": "3.22.1" -+ }, -+ "stlSharedObjectMap": { -+ "LIBCXX_SHARED": { -+ "armeabi-v7a": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", -+ "arm64-v8a": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "riscv64": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", -+ "x86": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", -+ "x86_64": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" -+ }, -+ "LIBCXX_STATIC": {}, -+ "NONE": {}, -+ "SYSTEM": {} -+ }, -+ "project": { -+ "rootBuildGradleFolder": "/Users/james/GitHub/Wallet/android", -+ "sdkFolder": "/Users/james/Library/Android/sdk", -+ "isBuildOnlyTargetAbiEnabled": true, -+ "isCmakeBuildCohabitationEnabled": false, -+ "isPrefabEnabled": true -+ }, -+ "outputOptions": [], -+ "ninjaExe": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "hasBuildTimeInformation": true -+ }, -+ "prefabClassPaths": [ -+ "/Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" -+ ], -+ "prefabPackages": [ -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab" -+ ], -+ "prefabPackageConfigurations": [ -+ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" -+ ], -+ "stlType": "c++_shared", -+ "optimizationTag": "Debug" -+ }, -+ "buildSettings": { -+ "environmentVariables": [] -+ }, -+ "prefabFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a", -+ "isActiveAbi": true, -+ "fullConfigurationHash": "2x4556162h3l216i6z4i105l5b286r1a1y6570e3w2f2a231g72632v1m205d1z", -+ "fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.11.0.\n# - $NDK is the path to NDK 27.1.12297006.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DREACT_NATIVE_MINOR_VERSION\u003d81\n-DANDROID_TOOLCHAIN\u003dclang\n-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native\n-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets\n-DIS_REANIMATED_EXAMPLE_APP\u003dfalse\n-DREANIMATED_PROFILING\u003dfalse\n-DREANIMATED_VERSION\u003d4.1.6\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON\n-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]", -+ "configurationArguments": [ -+ "-H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android", -+ "-DCMAKE_SYSTEM_NAME\u003dAndroid", -+ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", -+ "-DCMAKE_SYSTEM_VERSION\u003d24", -+ "-DANDROID_PLATFORM\u003dandroid-24", -+ "-DANDROID_ABI\u003darm64-v8a", -+ "-DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a", -+ "-DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "-DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a", -+ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a", -+ "-DCMAKE_BUILD_TYPE\u003dDebug", -+ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab", -+ "-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a", -+ "-GNinja", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d81", -+ "-DANDROID_TOOLCHAIN\u003dclang", -+ "-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native", -+ "-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets", -+ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", -+ "-DREANIMATED_PROFILING\u003dfalse", -+ "-DREANIMATED_VERSION\u003d4.1.6", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", -+ "-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -+ ], -+ "stlLibraryFile": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "intermediatesParentFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_stderr_reanimated.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_stderr_reanimated.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_stdout_reanimated.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_stdout_reanimated.txt -new file mode 100644 -index 0000000..28b9199 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/build_stdout_reanimated.txt -@@ -0,0 +1,74 @@ -+ninja: Entering directory `/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a' -+[0/2] Re-checking globbed directories... -+[1/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -+[2/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -+[3/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -+[4/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -+[5/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -+[6/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -+[7/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -+[8/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -+[9/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -+[10/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -+[11/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -+[12/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -+[13/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -+[14/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -+[15/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -+[16/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -+[17/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -+[18/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -+[19/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -+[20/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -+[21/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -+[22/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -+[23/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -+[24/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -+[25/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -+[26/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -+[27/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -+[28/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -+[29/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -+[30/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -+[31/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -+[32/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -+[33/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -+[34/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -+[35/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -+[36/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -+[37/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -+[38/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -+[39/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -+[40/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -+[41/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -+[42/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -+[43/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -+[44/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -+[45/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -+[46/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -+[47/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -+[48/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -+[49/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -+[50/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -+[51/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -+[52/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -+[53/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -+[54/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -+[55/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -+[56/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -+[57/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -+[58/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -+[59/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -+[60/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -+[61/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -+[62/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -+[63/72] Building CXX object CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -+[64/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -+[65/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -+[66/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -+[67/72] Building CXX object CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -+[68/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -+[69/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -+[70/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -+[71/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -+[72/72] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_command -new file mode 100755 -index 0000000..06995c2 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_command -@@ -0,0 +1,28 @@ -+/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \ -+ -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \ -+ -DCMAKE_SYSTEM_NAME=Android \ -+ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ -+ -DCMAKE_SYSTEM_VERSION=24 \ -+ -DANDROID_PLATFORM=android-24 \ -+ -DANDROID_ABI=arm64-v8a \ -+ -DCMAKE_ANDROID_ARCH_ABI=arm64-v8a \ -+ -DANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_ANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_TOOLCHAIN_FILE=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ -+ -DCMAKE_MAKE_PROGRAM=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \ -+ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \ -+ -DCMAKE_BUILD_TYPE=Debug \ -+ -DCMAKE_FIND_ROOT_PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab \ -+ -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a \ -+ -GNinja \ -+ -DANDROID_STL=c++_shared \ -+ -DREACT_NATIVE_MINOR_VERSION=81 \ -+ -DANDROID_TOOLCHAIN=clang \ -+ -DREACT_NATIVE_DIR=/Users/james/GitHub/Wallet/node_modules/react-native \ -+ -DREACT_NATIVE_WORKLETS_DIR=/Users/james/GitHub/Wallet/node_modules/react-native-worklets \ -+ -DIS_REANIMATED_EXAMPLE_APP=false \ -+ -DREANIMATED_PROFILING=false \ -+ -DREANIMATED_VERSION=4.1.6 \ -+ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON \ -+ -DREANIMATED_FEATURE_FLAGS=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_stdout.txt -new file mode 100644 -index 0000000..40e3e2c ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/configure_stdout.txt -@@ -0,0 +1,3 @@ -+-- Configuring done -+-- Generating done -+-- Build files have been written to: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/generate_cxx_metadata_121_timing.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/generate_cxx_metadata_121_timing.txt -new file mode 100644 -index 0000000..6f02e65 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/generate_cxx_metadata_121_timing.txt -@@ -0,0 +1,14 @@ -+# C/C++ build system timings -+generate_cxx_metadata -+ generate-prefab-packages -+ [gap of 24ms] -+ exec-prefab 4219ms -+ [gap of 14ms] -+ generate-prefab-packages completed in 4257ms -+ execute-generate-process -+ exec-configure 518ms -+ [gap of 118ms] -+ execute-generate-process completed in 637ms -+ [gap of 24ms] -+generate_cxx_metadata completed in 4926ms -+ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/metadata_generation_record.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/metadata_generation_record.json -new file mode 100644 -index 0000000..e98c2e6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/metadata_generation_record.json -@@ -0,0 +1,249 @@ -+[ -+ { -+ "level_": 0, -+ "message_": "Start JSON generation. Platform version: 24 min SDK version: arm64-v8a", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "rebuilding JSON /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json due to:", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "- a file changed", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": " - /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/prefab_config.json (LAST_MODIFIED_CHANGED)", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home/bin/java \\\n --class-path \\\n /Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \\\n com.google.prefab.cli.AppKt \\\n --build-system \\\n cmake \\\n --platform \\\n android \\\n --abi \\\n arm64-v8a \\\n --os-version \\\n 24 \\\n --stl \\\n c++_shared \\\n --ndk-version \\\n 27 \\\n --output \\\n /var/folders/rv/cv83s_992xgbp4hp34l2mdn40000gp/T/agp-prefab-staging16231224587508010234/staged-cli-output \\\n /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab \\\n /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23 \\\n /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab\n", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "Received process result: 0", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "keeping json folder \u0027/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a\u0027 but regenerating project", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "executing cmake /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003darm64-v8a \\\n -DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a \\\n -DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab \\\n -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d81 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native \\\n -DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_PROFILING\u003dfalse \\\n -DREANIMATED_VERSION\u003d4.1.6 \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\n", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003darm64-v8a \\\n -DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a \\\n -DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/arm64-v8a/prefab \\\n -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d81 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native \\\n -DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_PROFILING\u003dfalse \\\n -DREANIMATED_VERSION\u003d4.1.6 \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\n", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "Received process result: 0", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "Exiting generation of /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json.bin normally", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "done executing cmake", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libjsi.so in incremental regenerate", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libfbjni.so in incremental regenerate", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libworklets.so in incremental regenerate", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libc++_shared.so in incremental regenerate", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreactnative.so in incremental regenerate", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "hard linked /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/compile_commands.json to /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON generation completed without problems", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ } -+] -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_command -new file mode 100755 -index 0000000..896cb14 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_command -@@ -0,0 +1,21 @@ -+/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home/bin/java \ -+ --class-path \ -+ /Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \ -+ com.google.prefab.cli.AppKt \ -+ --build-system \ -+ cmake \ -+ --platform \ -+ android \ -+ --abi \ -+ arm64-v8a \ -+ --os-version \ -+ 24 \ -+ --stl \ -+ c++_shared \ -+ --ndk-version \ -+ 27 \ -+ --output \ -+ /var/folders/rv/cv83s_992xgbp4hp34l2mdn40000gp/T/agp-prefab-staging16231224587508010234/staged-cli-output \ -+ /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab \ -+ /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23 \ -+ /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/arm64-v8a/prefab_stdout.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_command_reanimated b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_command_reanimated -new file mode 100755 -index 0000000..4795009 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_command_reanimated -@@ -0,0 +1,4 @@ -+/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -C \ -+ /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 \ -+ reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_model.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_model.json -new file mode 100644 -index 0000000..77007ed ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_model.json -@@ -0,0 +1,229 @@ -+{ -+ "info": { -+ "name": "x86_64", -+ "bitness": 64, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "x86_64", -+ "triple": "x86_64-linux-android", -+ "llvmTriple": "x86_64-none-linux-android" -+ }, -+ "cxxBuildFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "soFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64", -+ "soRepublishFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64", -+ "abiPlatformVersion": 24, -+ "cmake": { -+ "effectiveConfiguration": { -+ "inheritEnvironments": [], -+ "variables": [] -+ } -+ }, -+ "variant": { -+ "buildSystemArgumentList": [ -+ "-DANDROID_STL\u003dc++_shared", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d81", -+ "-DANDROID_TOOLCHAIN\u003dclang", -+ "-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native", -+ "-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets", -+ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", -+ "-DREANIMATED_PROFILING\u003dfalse", -+ "-DREANIMATED_VERSION\u003d4.1.6", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", -+ "-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -+ ], -+ "cFlagsList": [], -+ "cppFlagsList": [], -+ "variantName": "debug", -+ "isDebuggableEnabled": true, -+ "validAbiList": [ -+ "arm64-v8a", -+ "x86_64" -+ ], -+ "buildTargetSet": [ -+ "reanimated" -+ ], -+ "implicitBuildTargetSet": [ -+ "reanimated" -+ ], -+ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", -+ "module": { -+ "cxxFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx", -+ "intermediatesBaseFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates", -+ "intermediatesFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx", -+ "gradleModulePathName": ":react-native-reanimated", -+ "moduleRootFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android", -+ "moduleBuildFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build.gradle", -+ "makeFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "buildSystem": "CMAKE", -+ "ndkFolder": "/Users/james/Library/Android/sdk/ndk/27.1.12297006", -+ "ndkFolderBeforeSymLinking": "/Users/james/Library/Android/sdk/ndk/27.1.12297006", -+ "ndkVersion": "27.1.12297006", -+ "ndkSupportedAbiList": [ -+ "armeabi-v7a", -+ "arm64-v8a", -+ "riscv64", -+ "x86", -+ "x86_64" -+ ], -+ "ndkDefaultAbiList": [ -+ "armeabi-v7a", -+ "arm64-v8a", -+ "x86", -+ "x86_64" -+ ], -+ "ndkDefaultStl": "LIBCXX_STATIC", -+ "ndkMetaPlatforms": { -+ "min": 21, -+ "max": 35, -+ "aliases": { -+ "20": 19, -+ "25": 24, -+ "J": 16, -+ "J-MR1": 17, -+ "J-MR2": 18, -+ "K": 19, -+ "L": 21, -+ "L-MR1": 22, -+ "M": 23, -+ "N": 24, -+ "N-MR1": 24, -+ "O": 26, -+ "O-MR1": 27, -+ "P": 28, -+ "Q": 29, -+ "R": 30, -+ "S": 31, -+ "Sv2": 32, -+ "Tiramisu": 33, -+ "UpsideDownCake": 34, -+ "VanillaIceCream": 35 -+ } -+ }, -+ "ndkMetaAbiList": [ -+ { -+ "name": "armeabi-v7a", -+ "bitness": 32, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "arm", -+ "triple": "arm-linux-androideabi", -+ "llvmTriple": "armv7-none-linux-androideabi" -+ }, -+ { -+ "name": "arm64-v8a", -+ "bitness": 64, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "arm64", -+ "triple": "aarch64-linux-android", -+ "llvmTriple": "aarch64-none-linux-android" -+ }, -+ { -+ "name": "riscv64", -+ "bitness": 64, -+ "isDefault": false, -+ "isDeprecated": false, -+ "architecture": "riscv64", -+ "triple": "riscv64-linux-android", -+ "llvmTriple": "riscv64-none-linux-android" -+ }, -+ { -+ "name": "x86", -+ "bitness": 32, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "x86", -+ "triple": "i686-linux-android", -+ "llvmTriple": "i686-none-linux-android" -+ }, -+ { -+ "name": "x86_64", -+ "bitness": 64, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "x86_64", -+ "triple": "x86_64-linux-android", -+ "llvmTriple": "x86_64-none-linux-android" -+ } -+ ], -+ "cmakeToolchainFile": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "cmake": { -+ "cmakeExe": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cmakeVersionFromDsl": "3.22.1" -+ }, -+ "stlSharedObjectMap": { -+ "LIBCXX_SHARED": { -+ "armeabi-v7a": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", -+ "arm64-v8a": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "riscv64": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", -+ "x86": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", -+ "x86_64": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" -+ }, -+ "LIBCXX_STATIC": {}, -+ "NONE": {}, -+ "SYSTEM": {} -+ }, -+ "project": { -+ "rootBuildGradleFolder": "/Users/james/GitHub/Wallet/android", -+ "sdkFolder": "/Users/james/Library/Android/sdk", -+ "isBuildOnlyTargetAbiEnabled": true, -+ "isCmakeBuildCohabitationEnabled": false, -+ "isPrefabEnabled": true -+ }, -+ "outputOptions": [], -+ "ninjaExe": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "hasBuildTimeInformation": true -+ }, -+ "prefabClassPaths": [ -+ "/Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" -+ ], -+ "prefabPackages": [ -+ "/Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab", -+ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab" -+ ], -+ "prefabPackageConfigurations": [ -+ "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" -+ ], -+ "stlType": "c++_shared", -+ "optimizationTag": "Debug" -+ }, -+ "buildSettings": { -+ "environmentVariables": [] -+ }, -+ "prefabFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64", -+ "isActiveAbi": true, -+ "fullConfigurationHash": "2x4556162h3l216i6z4i105l5b286r1a1y6570e3w2f2a231g72632v1m205d1z", -+ "fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.11.0.\n# - $NDK is the path to NDK 27.1.12297006.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DREACT_NATIVE_MINOR_VERSION\u003d81\n-DANDROID_TOOLCHAIN\u003dclang\n-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native\n-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets\n-DIS_REANIMATED_EXAMPLE_APP\u003dfalse\n-DREANIMATED_PROFILING\u003dfalse\n-DREANIMATED_VERSION\u003d4.1.6\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON\n-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]", -+ "configurationArguments": [ -+ "-H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android", -+ "-DCMAKE_SYSTEM_NAME\u003dAndroid", -+ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", -+ "-DCMAKE_SYSTEM_VERSION\u003d24", -+ "-DANDROID_PLATFORM\u003dandroid-24", -+ "-DANDROID_ABI\u003dx86_64", -+ "-DCMAKE_ANDROID_ARCH_ABI\u003dx86_64", -+ "-DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "-DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64", -+ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64", -+ "-DCMAKE_BUILD_TYPE\u003dDebug", -+ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab", -+ "-B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64", -+ "-GNinja", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d81", -+ "-DANDROID_TOOLCHAIN\u003dclang", -+ "-DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native", -+ "-DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets", -+ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", -+ "-DREANIMATED_PROFILING\u003dfalse", -+ "-DREANIMATED_VERSION\u003d4.1.6", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", -+ "-DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]" -+ ], -+ "stlLibraryFile": "/Users/james/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so", -+ "intermediatesParentFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_stderr_reanimated.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_stderr_reanimated.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_stdout_reanimated.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_stdout_reanimated.txt -new file mode 100644 -index 0000000..1e6da02 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/build_stdout_reanimated.txt -@@ -0,0 +1,74 @@ -+ninja: Entering directory `/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64' -+[0/2] Re-checking globbed directories... -+[1/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformOp.cpp.o -+[2/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/Quaternion.cpp.o -+[3/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/vectors.cpp.o -+[4/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix2D.cpp.o -+[5/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -+[6/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSBoolean.cpp.o -+[7/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSKeyword.cpp.o -+[8/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/transforms/TransformMatrix3D.cpp.o -+[9/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.cpp.o -+[10/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSLength.cpp.o -+[11/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSDiscreteArray.cpp.o -+[12/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSTransitionConfig.cpp.o -+[13/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSAngle.cpp.o -+[14/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/common.cpp.o -+[15/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSNumber.cpp.o -+[16/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/cubicBezier.cpp.o -+[17/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/EasingFunctions.cpp.o -+[18/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/linear.cpp.o -+[19/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSKeyframesConfig.cpp.o -+[20/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/configs/CSSAnimationConfig.cpp.o -+[21/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/easing/steps.cpp.o -+[22/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/InterpolatorRegistry.cpp.o -+[23/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSAnimation.cpp.o -+[24/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/core/CSSTransition.cpp.o -+[25/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSValueVariant.cpp.o -+[26/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/DelayedItemsManager.cpp.o -+[27/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/PropertyInterpolator.cpp.o -+[28/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/InterpolatorFactory.cpp.o -+[29/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.cpp.o -+[30/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.cpp.o -+[31/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.cpp.o -+[32/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.cpp.o -+[33/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/RawProgressProvider.cpp.o -+[34/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.cpp.o -+[35/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformOperation.cpp.o -+[36/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/operations/matrix.cpp.o -+[37/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.cpp.o -+[38/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.cpp.o -+[39/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/AnimationProgressProvider.cpp.o -+[40/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/ValueInterpolator.cpp.o -+[41/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/misc/ViewStylesRepository.cpp.o -+[42/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/interpolation/values/SimpleValueInterpolator.cpp.o -+[43/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/algorithms.cpp.o -+[44/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/progress/TransitionProgressProvider.cpp.o -+[45/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSKeyframesRegistry.cpp.o -+[46/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/StaticPropsRegistry.cpp.o -+[47/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/keyframes.cpp.o -+[48/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGLength.cpp.o -+[49/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSTransitionsRegistry.cpp.o -+[50/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/registries/CSSAnimationsRegistry.cpp.o -+[51/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGStrokeDashArray.cpp.o -+[52/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/interpolators.cpp.o -+[53/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -+[54/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/CSS/utils/props.cpp.o -+[55/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp.o -+[56/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -+[57/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -+[58/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeatureFlags.cpp.o -+[59/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -+[60/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistry.cpp.o -+[61/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxySpec.cpp.o -+[62/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -+[63/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/ReanimatedVersion.cpp.o -+[64/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/updates/UpdatesRegistryManager.cpp.o -+[65/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/PropValueProcessor.cpp.o -+[66/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -+[67/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -+[68/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -+[69/72] Building CXX object CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/OnLoad.cpp.o -+[70/72] Building CXX object CMakeFiles/reanimated.dir/src/main/cpp/reanimated/android/NativeProxy.cpp.o -+[71/72] Building CXX object CMakeFiles/reanimated.dir/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp.o -+[72/72] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_command -new file mode 100755 -index 0000000..519e3d6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_command -@@ -0,0 +1,28 @@ -+/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \ -+ -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \ -+ -DCMAKE_SYSTEM_NAME=Android \ -+ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ -+ -DCMAKE_SYSTEM_VERSION=24 \ -+ -DANDROID_PLATFORM=android-24 \ -+ -DANDROID_ABI=x86_64 \ -+ -DCMAKE_ANDROID_ARCH_ABI=x86_64 \ -+ -DANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_ANDROID_NDK=/Users/james/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_TOOLCHAIN_FILE=/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ -+ -DCMAKE_MAKE_PROGRAM=/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \ -+ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \ -+ -DCMAKE_BUILD_TYPE=Debug \ -+ -DCMAKE_FIND_ROOT_PATH=/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab \ -+ -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 \ -+ -GNinja \ -+ -DANDROID_STL=c++_shared \ -+ -DREACT_NATIVE_MINOR_VERSION=81 \ -+ -DANDROID_TOOLCHAIN=clang \ -+ -DREACT_NATIVE_DIR=/Users/james/GitHub/Wallet/node_modules/react-native \ -+ -DREACT_NATIVE_WORKLETS_DIR=/Users/james/GitHub/Wallet/node_modules/react-native-worklets \ -+ -DIS_REANIMATED_EXAMPLE_APP=false \ -+ -DREANIMATED_PROFILING=false \ -+ -DREANIMATED_VERSION=4.1.6 \ -+ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON \ -+ -DREANIMATED_FEATURE_FLAGS=[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false] -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_stdout.txt -new file mode 100644 -index 0000000..d6058e0 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/configure_stdout.txt -@@ -0,0 +1,3 @@ -+-- Configuring done -+-- Generating done -+-- Build files have been written to: /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/generate_cxx_metadata_121_timing.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/generate_cxx_metadata_121_timing.txt -new file mode 100644 -index 0000000..55d0c5c ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/generate_cxx_metadata_121_timing.txt -@@ -0,0 +1,15 @@ -+# C/C++ build system timings -+generate_cxx_metadata -+ create-invalidation-state 127ms -+ generate-prefab-packages -+ [gap of 23ms] -+ exec-prefab 4002ms -+ [gap of 13ms] -+ generate-prefab-packages completed in 4038ms -+ execute-generate-process -+ exec-configure 607ms -+ [gap of 206ms] -+ execute-generate-process completed in 813ms -+ [gap of 15ms] -+generate_cxx_metadata completed in 5001ms -+ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/metadata_generation_record.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/metadata_generation_record.json -new file mode 100644 -index 0000000..618c51c ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/metadata_generation_record.json -@@ -0,0 +1,249 @@ -+[ -+ { -+ "level_": 0, -+ "message_": "Start JSON generation. Platform version: 24 min SDK version: x86_64", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "rebuilding JSON /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json due to:", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "- a file changed", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": " - /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/prefab_config.json (LAST_MODIFIED_CHANGED)", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home/bin/java \\\n --class-path \\\n /Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \\\n com.google.prefab.cli.AppKt \\\n --build-system \\\n cmake \\\n --platform \\\n android \\\n --abi \\\n x86_64 \\\n --os-version \\\n 24 \\\n --stl \\\n c++_shared \\\n --ndk-version \\\n 27 \\\n --output \\\n /var/folders/rv/cv83s_992xgbp4hp34l2mdn40000gp/T/agp-prefab-staging9028056130761516402/staged-cli-output \\\n /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab \\\n /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i \\\n /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab\n", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "Received process result: 0", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "keeping json folder \u0027/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64\u0027 but regenerating project", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "executing cmake /Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003dx86_64 \\\n -DCMAKE_ANDROID_ARCH_ABI\u003dx86_64 \\\n -DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab \\\n -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d81 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native \\\n -DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_PROFILING\u003dfalse \\\n -DREANIMATED_VERSION\u003d4.1.6 \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\n", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "/Users/james/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003dx86_64 \\\n -DCMAKE_ANDROID_ARCH_ABI\u003dx86_64 \\\n -DANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/james/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/james/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64 \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/prefab/x86_64/prefab \\\n -B/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64 \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d81 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DREACT_NATIVE_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native \\\n -DREACT_NATIVE_WORKLETS_DIR\u003d/Users/james/GitHub/Wallet/node_modules/react-native-worklets \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_PROFILING\u003dfalse \\\n -DREANIMATED_VERSION\u003d4.1.6 \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DREANIMATED_FEATURE_FLAGS\u003d[EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTS:false][RUNTIME_TEST_FLAG:false][DISABLE_COMMIT_PAUSING_MECHANISM:false][ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS:false][USE_SYNCHRONIZABLE_FOR_MUTABLES:false]\n", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "Received process result: 0", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "Exiting generation of /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json.bin normally", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "done executing cmake", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libjsi.so in incremental regenerate", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libfbjni.so in incremental regenerate", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libworklets.so in incremental regenerate", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libc++_shared.so in incremental regenerate", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "deleted unexpected build output /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreactnative.so in incremental regenerate", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "hard linked /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/compile_commands.json to /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON generation completed without problems", -+ "file_": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ } -+] -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_command -new file mode 100755 -index 0000000..2ea01ee ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_command -@@ -0,0 +1,21 @@ -+/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home/bin/java \ -+ --class-path \ -+ /Users/james/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \ -+ com.google.prefab.cli.AppKt \ -+ --build-system \ -+ cmake \ -+ --platform \ -+ android \ -+ --abi \ -+ x86_64 \ -+ --os-version \ -+ 24 \ -+ --stl \ -+ c++_shared \ -+ --ndk-version \ -+ 27 \ -+ --output \ -+ /var/folders/rv/cv83s_992xgbp4hp34l2mdn40000gp/T/agp-prefab-staging9028056130761516402/staged-cli-output \ -+ /Users/james/.gradle/caches/9.3.0/transforms/4412541f9784c9a59d3d6d68a7595579/transformed/react-android-0.81.5-debug/prefab \ -+ /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i \ -+ /Users/james/.gradle/caches/9.3.0/transforms/89188ee93c0abe67535652426988859d/transformed/fbjni-0.7.0/prefab -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/logs/x86_64/prefab_stdout.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libc++_shared.so -new file mode 100755 -index 0000000..2c72c65 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libc++_shared.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libfbjni.so -new file mode 100644 -index 0000000..aadd325 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libfbjni.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libjsi.so -new file mode 100644 -index 0000000..52c310d -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libjsi.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreactnative.so -new file mode 100644 -index 0000000..11165ed -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreactnative.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so -new file mode 100755 -index 0000000..bd83cd4 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libworklets.so -new file mode 100755 -index 0000000..c8d0c8e -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libworklets.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libc++_shared.so -new file mode 100755 -index 0000000..8e3a868 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libc++_shared.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libfbjni.so -new file mode 100644 -index 0000000..68ecbda -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libfbjni.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libjsi.so -new file mode 100644 -index 0000000..1372005 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libjsi.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreactnative.so -new file mode 100644 -index 0000000..9f300cf -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreactnative.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so -new file mode 100755 -index 0000000..81f39dc -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libworklets.so -new file mode 100755 -index 0000000..5b9b9c7 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libworklets.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/include/placeholder.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/libs/android.x86_64/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/libs/android.x86_64/abi.json -new file mode 100644 -index 0000000..c4d68de ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/libs/android.x86_64/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86_64", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/module.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/modules/worklets/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab.json -new file mode 100644 -index 0000000..534d606 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab.json -@@ -0,0 +1,6 @@ -+{ -+ "name": "react-native-worklets", -+ "schema_version": 2, -+ "dependencies": [], -+ "version": "0.5.1" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab_publication.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab_publication.json -new file mode 100644 -index 0000000..b3b9b2e ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/52161r5i/prefab_publication.json -@@ -0,0 +1,27 @@ -+{ -+ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", -+ "gradlePath": ":react-native-worklets", -+ "packageInfo": { -+ "packageName": "react-native-worklets", -+ "packageVersion": "0.5.1", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "worklets", -+ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/prefab-headers/worklets", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86_64", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cxx/Debug/3t3jm3v4/obj/x86_64/libworklets.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/.cxx/Debug/3t3jm3v4/x86_64/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/include/placeholder.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/libs/android.arm64-v8a/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/libs/android.arm64-v8a/abi.json -new file mode 100644 -index 0000000..d307572 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/libs/android.arm64-v8a/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "arm64-v8a", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/module.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/modules/worklets/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab.json -new file mode 100644 -index 0000000..534d606 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab.json -@@ -0,0 +1,6 @@ -+{ -+ "name": "react-native-worklets", -+ "schema_version": 2, -+ "dependencies": [], -+ "version": "0.5.1" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab_publication.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab_publication.json -new file mode 100644 -index 0000000..1d1bea8 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/6c4j5k23/prefab_publication.json -@@ -0,0 +1,27 @@ -+{ -+ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", -+ "gradlePath": ":react-native-worklets", -+ "packageInfo": { -+ "packageName": "react-native-worklets", -+ "packageVersion": "0.5.1", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "worklets", -+ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/prefab-headers/worklets", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "arm64-v8a", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/cxx/Debug/3t3jm3v4/obj/arm64-v8a/libworklets.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/.cxx/Debug/3t3jm3v4/arm64-v8a/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/modules/worklets/include/placeholder.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/modules/worklets/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/modules/worklets/module.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/modules/worklets/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/modules/worklets/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab.json -new file mode 100644 -index 0000000..534d606 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab.json -@@ -0,0 +1,6 @@ -+{ -+ "name": "react-native-worklets", -+ "schema_version": 2, -+ "dependencies": [], -+ "version": "0.5.1" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab_publication.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab_publication.json -new file mode 100644 -index 0000000..85d7422 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/refs/react-native-worklets/v3c331eb/prefab_publication.json -@@ -0,0 +1,18 @@ -+{ -+ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/intermediates/prefab_package/debug/prefab", -+ "gradlePath": ":react-native-worklets", -+ "packageInfo": { -+ "packageName": "react-native-worklets", -+ "packageVersion": "0.5.1", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "worklets", -+ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-worklets/android/build/prefab-headers/worklets", -+ "moduleExportLibraries": [], -+ "abis": [] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -new file mode 100644 -index 0000000..322365e ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -@@ -0,0 +1 @@ -+#Mon Jun 08 21:45:45 BST 2026 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml -new file mode 100644 -index 0000000..5a27758 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugAssets/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugAssets/merger.xml -new file mode 100644 -index 0000000..9cdfdb8 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugAssets/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -new file mode 100644 -index 0000000..0223775 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -new file mode 100644 -index 0000000..beb569b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/common/GestureHandlerStateManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/common/GestureHandlerStateManager.class -new file mode 100644 -index 0000000..25bb987 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/common/GestureHandlerStateManager.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BuildConfig.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BuildConfig.class -new file mode 100644 -index 0000000..565cbe1 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BuildConfig.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent$1.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent$1.class -new file mode 100644 -index 0000000..318a4b8 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent$1.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent.class -new file mode 100644 -index 0000000..f74e033 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/DevMenuUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/DevMenuUtils.class -new file mode 100644 -index 0000000..fb64721 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/DevMenuUtils.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/MapUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/MapUtils.class -new file mode 100644 -index 0000000..dfe568b -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/MapUtils.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy.class -new file mode 100644 -index 0000000..d829c8c -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeReanimatedModuleSpec.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeReanimatedModuleSpec.class -new file mode 100644 -index 0000000..df6a418 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeReanimatedModuleSpec.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$1.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$1.class -new file mode 100644 -index 0000000..bd42cf1 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$1.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class -new file mode 100644 -index 0000000..872bf6a -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager.class -new file mode 100644 -index 0000000..66d57da -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule.class -new file mode 100644 -index 0000000..a4a0509 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedPackage.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedPackage.class -new file mode 100644 -index 0000000..46d72d1 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedPackage.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils$1.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils$1.class -new file mode 100644 -index 0000000..9604ea7 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils$1.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils.class -new file mode 100644 -index 0000000..da9e1ee -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/Keyboard.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/Keyboard.class -new file mode 100644 -index 0000000..bb4604d -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/Keyboard.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class -new file mode 100644 -index 0000000..8fdb012 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class -new file mode 100644 -index 0000000..bae195e -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardState.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardState.class -new file mode 100644 -index 0000000..4819270 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardState.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class -new file mode 100644 -index 0000000..367c1a6 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class -new file mode 100644 -index 0000000..67b0338 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class -new file mode 100644 -index 0000000..72ef476 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class -new file mode 100644 -index 0000000..d45cd1a -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/EventHandler.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/EventHandler.class -new file mode 100644 -index 0000000..eb17226 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/EventHandler.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class -new file mode 100644 -index 0000000..dd47f6a -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/SensorSetter.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/SensorSetter.class -new file mode 100644 -index 0000000..7aefac3 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/SensorSetter.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensor.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensor.class -new file mode 100644 -index 0000000..34ae9ab -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensor.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class -new file mode 100644 -index 0000000..987353f -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class -new file mode 100644 -index 0000000..3fdb42f -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorType.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorType.class -new file mode 100644 -index 0000000..5faa711 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorType.class differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libreanimated.so -new file mode 100644 -index 0000000..bd83cd4 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libreanimated.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libworklets.so -new file mode 100644 -index 0000000..c8d0c8e -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libworklets.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libreanimated.so -new file mode 100644 -index 0000000..81f39dc -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libreanimated.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libworklets.so -new file mode 100644 -index 0000000..5b9b9c7 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libworklets.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-reanimated/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt -new file mode 100644 -index 0000000..78ac5b8 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt -@@ -0,0 +1,2 @@ -+R_DEF: Internal format may change without notice -+local -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-reanimated/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt -new file mode 100644 -index 0000000..1fd95ff ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt -@@ -0,0 +1,7 @@ -+1 -+2 -+4 -+5 -+6 -+7 -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-reanimated/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml -new file mode 100644 -index 0000000..ed5d55a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml -@@ -0,0 +1,7 @@ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libreanimated.so -new file mode 100644 -index 0000000..bd83cd4 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libreanimated.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libworklets.so -new file mode 100644 -index 0000000..c8d0c8e -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libworklets.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libreanimated.so -new file mode 100644 -index 0000000..81f39dc -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libreanimated.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libworklets.so -new file mode 100644 -index 0000000..5b9b9c7 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libworklets.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-reanimated/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json -new file mode 100644 -index 0000000..0637a08 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json -@@ -0,0 +1 @@ -+[] -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-reanimated/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt -new file mode 100644 -index 0000000..08f4ebe ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt -@@ -0,0 +1 @@ -+0 Warning/Error -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/AnimatedSensor/AnimatedSensorModule.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/AnimatedSensor/AnimatedSensorModule.h -new file mode 100644 -index 0000000..f813079 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/AnimatedSensor/AnimatedSensorModule.h -@@ -0,0 +1,47 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace worklets; -+ -+enum SensorType { -+ ACCELEROMETER = 1, -+ GYROSCOPE = 2, -+ GRAVITY = 3, -+ MAGNETIC_FIELD = 4, -+ ROTATION_VECTOR = 5, -+}; -+ -+class AnimatedSensorModule { -+ std::unordered_set sensorsIds_; -+ RegisterSensorFunction platformRegisterSensorFunction_; -+ UnregisterSensorFunction platformUnregisterSensorFunction_; -+ -+ public: -+ AnimatedSensorModule( -+ const PlatformDepMethodsHolder &platformDepMethodsHolder); -+ ~AnimatedSensorModule(); -+ -+ jsi::Value registerSensor( -+ jsi::Runtime &rt, -+ const std::shared_ptr &uiWorkletRuntime, -+ const jsi::Value &sensorType, -+ const jsi::Value &interval, -+ const jsi::Value &iosReferenceFrame, -+ const jsi::Value &sensorDataContainer); -+ void unregisterSensor(const jsi::Value &sensorId); -+ void unregisterAllSensors(); -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/InterpolatorRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/InterpolatorRegistry.h -new file mode 100644 -index 0000000..5d841ba ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/InterpolatorRegistry.h -@@ -0,0 +1,20 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+using ComponentInterpolatorsMap = -+ std::unordered_map; -+ -+const InterpolatorFactoriesRecord &getComponentInterpolators( -+ const std::string &componentName); -+ -+void registerComponentInterpolators( -+ const std::string &componentName, -+ const InterpolatorFactoriesRecord &interpolators); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/definitions.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/definitions.h -new file mode 100644 -index 0000000..d043127 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/definitions.h -@@ -0,0 +1,23 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+ -+using PropertyNames = std::vector; -+using PropertyPath = std::vector; -+/** -+ * If nullopt - all style properties can trigger transition -+ * If empty vector - no style property can trigger transition -+ * Otherwise - only specified style properties can trigger transition -+ */ -+using TransitionProperties = std::optional; -+ -+using EasingFunction = std::function; -+using ColorChannels = std::array; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/Quaternion.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/Quaternion.h -new file mode 100644 -index 0000000..67336b8 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/Quaternion.h -@@ -0,0 +1,23 @@ -+#pragma once -+ -+#ifndef NDEBUG -+#include -+#endif // NDEBUG -+ -+namespace reanimated::css { -+ -+struct Quaternion { -+ double x, y, z, w; -+ -+ bool operator==(const Quaternion &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const Quaternion &quaternion); -+#endif // NDEBUG -+ -+ Quaternion interpolate(double progress, const Quaternion &other) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix.h -new file mode 100644 -index 0000000..805bc8a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix.h -@@ -0,0 +1,147 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class TransformMatrix { -+ public: -+ virtual ~TransformMatrix() = default; -+ -+ virtual double determinant() const = 0; -+ -+ virtual double &operator[](size_t index) = 0; -+ virtual const double &operator[](size_t index) const = 0; -+ -+ virtual size_t getDimension() const = 0; -+ -+ virtual std::string toString() const = 0; -+ virtual folly::dynamic toDynamic() const = 0; -+}; -+ -+template -+class TransformMatrixBase : public TransformMatrix { -+ public: -+ static constexpr size_t SIZE = TDimension * TDimension; -+ using MatrixArray = std::array; -+ -+ explicit TransformMatrixBase(MatrixArray matrix) -+ : matrix_(std::move(matrix)) {} -+ -+ explicit TransformMatrixBase(jsi::Runtime &rt, const jsi::Value &value) { -+ const auto array = value.asObject(rt).asArray(rt); -+ if (array.size(rt) != SIZE) { -+ throw std::invalid_argument( -+ "[Reanimated] Matrix array should have " + std::to_string(SIZE) + -+ " elements"); -+ } -+ -+ for (size_t i = 0; i < SIZE; ++i) { -+ matrix_[i] = array.getValueAtIndex(rt, i).asNumber(); -+ } -+ } -+ -+ explicit TransformMatrixBase(const folly::dynamic &array) { -+ if (!array.isArray() || array.size() != SIZE) { -+ throw std::invalid_argument( -+ "[Reanimated] Matrix array should have " + std::to_string(SIZE) + -+ " elements"); -+ } -+ -+ for (size_t i = 0; i < SIZE; ++i) { -+ matrix_[i] = array[i].asDouble(); -+ } -+ } -+ -+ virtual bool operator==(const TDerived &other) const = 0; -+ -+ double &operator[](size_t index) override { -+ return matrix_[index]; -+ } -+ -+ const double &operator[](size_t index) const override { -+ return matrix_[index]; -+ } -+ -+ TDerived operator*(const TDerived &rhs) const { -+ return TDerived(multiply(rhs)); -+ } -+ -+ TDerived &operator*=(const TDerived &rhs) { -+ matrix_ = multiply(rhs); -+ return static_cast(*this); -+ } -+ -+ std::string toString() const override { -+ std::string result = "["; -+ for (size_t i = 0; i < SIZE; ++i) { -+ result += std::to_string(matrix_[i]); -+ if (i < SIZE - 1) { -+ result += ", "; -+ } -+ } -+ result += "]"; -+ return result; -+ } -+ -+ folly::dynamic toDynamic() const override { -+ folly::dynamic result = folly::dynamic::array; -+ for (size_t i = 0; i < SIZE; ++i) { -+ result.push_back(matrix_[i]); -+ } -+ return result; -+ } -+ -+ size_t getDimension() const override { -+ return TDimension; -+ } -+ -+ bool isSingular() const { -+ return determinant() == 0; -+ } -+ -+ bool normalize() { -+ const auto last = matrix_[SIZE - 1]; -+ if (last == 0) { -+ return false; -+ } -+ if (last == 1) { -+ return true; -+ } -+ -+ for (size_t i = 0; i < SIZE; ++i) { -+ matrix_[i] /= last; -+ } -+ return true; -+ } -+ -+ void transpose() { -+ for (size_t i = 0; i < TDimension; ++i) { -+ for (size_t j = i + 1; j < TDimension; ++j) { -+ std::swap(matrix_[i * TDimension + j], matrix_[j * TDimension + i]); -+ } -+ } -+ } -+ -+ protected: -+ std::array matrix_; -+ -+ MatrixArray multiply(const TDerived &rhs) const { -+ std::array result{}; -+ for (size_t i = 0; i < TDimension; ++i) { -+ for (size_t j = 0; j < TDimension; ++j) { -+ for (size_t k = 0; k < TDimension; ++k) { -+ result[i * TDimension + j] += -+ matrix_[i * TDimension + k] * rhs[k * TDimension + j]; -+ } -+ } -+ } -+ return result; -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix2D.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix2D.h -new file mode 100644 -index 0000000..1dd9a66 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix2D.h -@@ -0,0 +1,58 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+namespace { -+static constexpr size_t MATRIX_2D_DIMENSION = 3; // 3x3 matrix -+} -+ -+class TransformMatrix2D -+ : public TransformMatrixBase { -+ public: -+ struct Decomposed { -+ Vector2D scale; -+ double skew; -+ double rotation; -+ Vector2D translation; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const Decomposed &decomposed); -+#endif // NDEBUG -+ -+ Decomposed interpolate(double progress, const Decomposed &other) const; -+ }; -+ -+ using TransformMatrixBase:: -+ TransformMatrixBase; -+ -+ static TransformMatrix2D Identity(); -+ -+ template -+ static TransformMatrix2D create(double value); -+ -+ bool operator==(const TransformMatrix2D &other) const override; -+ -+ double determinant() const override; -+ void translate2d(const Vector2D &translation); -+ void scale2d(const Vector2D &scale); -+ -+ std::optional decompose() const; -+ static TransformMatrix2D recompose(const Decomposed &decomposed); -+ -+ private: -+ Vector2D getTranslation() const; -+ static std::pair computeScaleAndSkew( -+ std::array &rows); -+ static double computeRotation(std::array &rows); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix3D.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix3D.h -new file mode 100644 -index 0000000..cd5d796 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformMatrix3D.h -@@ -0,0 +1,84 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+namespace { -+static constexpr size_t MATRIX_3D_DIMENSION = 4; // 4x4 matrix -+} -+ -+class TransformMatrix3D -+ : public TransformMatrixBase { -+ public: -+ struct Decomposed { -+ Vector3D scale; -+ Vector3D skew; -+ Quaternion quaternion; -+ Vector3D translation; -+ Vector4D perspective; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const Decomposed &decomposed); -+#endif // NDEBUG -+ -+ Decomposed interpolate(double progress, const Decomposed &other) const; -+ }; -+ -+ using TransformMatrixBase:: -+ TransformMatrixBase; -+ -+ static TransformMatrix3D Identity(); -+ -+ template -+ static TransformMatrix3D create(double value); -+ -+ bool operator==(const TransformMatrix3D &other) const override; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const TransformMatrix3D &matrix); -+#endif // NDEBUG -+ -+ double determinant() const override; -+ void adjugate(); -+ bool invert(); -+ void translate3d(const Vector3D &translation); -+ void scale3d(const Vector3D &scale); -+ -+ std::optional decompose() const; -+ static TransformMatrix3D recompose(const Decomposed &decomposed); -+ static TransformMatrix3D fromQuaternion(const Quaternion &q); -+ -+ private: -+ std::optional computePerspective() const; -+ -+ Vector3D getTranslation() const; -+ static std::pair computeScaleAndSkew( -+ std::array &rows); -+ static Quaternion computeQuaternion(std::array &columns); -+ -+ inline static double determinant3x3( -+ double a, -+ double b, -+ double c, -+ double d, -+ double e, -+ double f, -+ double g, -+ double h, -+ double i); -+}; -+ -+Vector4D operator*(const Vector4D &v, const TransformMatrix3D &m); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformOp.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformOp.h -new file mode 100644 -index 0000000..846b32e ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/TransformOp.h -@@ -0,0 +1,27 @@ -+#pragma once -+ -+#include -+ -+namespace reanimated::css { -+ -+enum class TransformOp { -+ Perspective, -+ Rotate, -+ RotateX, -+ RotateY, -+ RotateZ, -+ Scale, -+ ScaleX, -+ ScaleY, -+ TranslateX, -+ TranslateY, -+ SkewX, -+ SkewY, -+ Matrix, -+}; -+ -+TransformOp getTransformOperationType(const std::string &property); -+ -+std::string getOperationNameFromType(const TransformOp type); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/vectors.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/vectors.h -new file mode 100644 -index 0000000..5d6a788 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/transforms/vectors.h -@@ -0,0 +1,77 @@ -+#pragma once -+ -+#include -+ -+#ifndef NDEBUG -+#include -+#endif // NDEBUG -+ -+namespace reanimated::css { -+ -+struct Vector2D { -+ std::array vec; -+ -+ Vector2D() : vec({0, 0}) {} -+ explicit Vector2D(double x, double y) : vec({x, y}) {} -+ explicit Vector2D(std::array vec) : vec(vec) {} -+ -+ double &operator[](size_t idx); -+ const double &operator[](size_t idx) const; -+ Vector2D &operator*=(double scalar); -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const Vector2D &vector); -+#endif // NDEBUG -+ -+ double length() const; -+ void scaleToLength(double targetLength); -+ void normalize(); -+ double dot(const Vector2D &other) const; -+ double cross(const Vector2D &other) const; -+ Vector2D addScaled(const Vector2D &other, double scale) const; -+ Vector2D interpolate(double progress, const Vector2D &other) const; -+}; -+ -+struct Vector3D { -+ std::array vec; -+ -+ Vector3D() : vec({0, 0, 0}) {} -+ explicit Vector3D(double x, double y, double z) : vec({x, y, z}) {} -+ explicit Vector3D(std::array vec) : vec(vec) {} -+ -+ double &operator[](size_t idx); -+ const double &operator[](size_t idx) const; -+ Vector3D &operator*=(double scalar); -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const Vector3D &vector); -+#endif // NDEBUG -+ -+ double length() const; -+ void scaleToLength(double targetLength); -+ void normalize(); -+ double dot(const Vector3D &other) const; -+ Vector3D cross(const Vector3D &other) const; -+ Vector3D addScaled(const Vector3D &other, double scale) const; -+ Vector3D interpolate(double progress, const Vector3D &other) const; -+}; -+ -+struct Vector4D { -+ std::array vec; -+ -+ Vector4D() : vec({0, 0, 0, 0}) {} -+ explicit Vector4D(double x, double y, double z, double w) -+ : vec({x, y, z, w}) {} -+ explicit Vector4D(std::array vec) : vec(vec) {} -+ -+ double &operator[](size_t idx); -+ const double &operator[](size_t idx) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const Vector4D &vector); -+#endif // NDEBUG -+ -+ Vector4D interpolate(double progress, const Vector4D &other) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSAngle.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSAngle.h -new file mode 100644 -index 0000000..5501c65 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSAngle.h -@@ -0,0 +1,38 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+struct CSSAngle : public CSSSimpleValue { -+ double value; -+ -+ CSSAngle(); -+ explicit CSSAngle(double value); -+ explicit CSSAngle(const std::string &rotationString); -+ explicit CSSAngle(const char *cstr); -+ explicit CSSAngle(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSAngle(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ CSSAngle interpolate(double progress, const CSSAngle &to) const override; -+ -+ bool operator==(const CSSAngle &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const CSSAngle &angleValue); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSBoolean.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSBoolean.h -new file mode 100644 -index 0000000..ea6a08b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSBoolean.h -@@ -0,0 +1,33 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+struct CSSBoolean : public CSSSimpleValue { -+ bool value; -+ -+ CSSBoolean(); -+ explicit CSSBoolean(bool value); -+ explicit CSSBoolean(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSBoolean(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ CSSBoolean interpolate(double progress, const CSSBoolean &to) const override; -+ -+ bool operator==(const CSSBoolean &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const CSSBoolean &boolValue); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSColor.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSColor.h -new file mode 100644 -index 0000000..b7c679f ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSColor.h -@@ -0,0 +1,60 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+enum class ColorType { -+ Rgba, -+ Transparent, -+ CurrentColor, // for SVG -+}; -+ -+struct CSSColor : public CSSSimpleValue { -+ ColorChannels channels; -+ ColorType colorType; -+ -+ static const CSSColor Transparent; -+ -+ CSSColor(); -+ explicit CSSColor(ColorType colorType); -+ explicit CSSColor(int64_t numberValue); -+ explicit CSSColor(const std::string &colorString); -+ -+ explicit CSSColor(uint8_t r, uint8_t g, uint8_t b); -+ explicit CSSColor(uint8_t r, uint8_t g, uint8_t b, uint8_t a); -+ explicit CSSColor(const ColorChannels &colorChannels); -+ -+ explicit CSSColor(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSColor(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ CSSColor interpolate(double progress, const CSSColor &to) const override; -+ -+ static uint8_t interpolateChannel(uint8_t from, uint8_t to, double progress); -+ -+ bool operator==(const CSSColor &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const CSSColor &colorValue); -+#endif // NDEBUG -+ -+ private: -+ static bool isValidColorString(const std::string &colorString); -+}; -+ -+inline const CSSColor CSSColor::Transparent(ColorType::Transparent); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSDiscreteArray.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSDiscreteArray.h -new file mode 100644 -index 0000000..e5e1fc9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSDiscreteArray.h -@@ -0,0 +1,49 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+/* -+ * CSSDiscreteArray is used for array interpolation when arrays need to be -+ * treated as discrete values. Instead of interpolating between corresponding -+ * elements of two arrays, this type interpolates between entire arrays -+ * treated as single discrete values. -+ */ -+template -+struct CSSDiscreteArray : public CSSSimpleValue> { -+ static constexpr bool is_discrete_value = true; -+ -+ std::vector values; -+ -+ CSSDiscreteArray(); -+ explicit CSSDiscreteArray(const std::vector &values); -+ explicit CSSDiscreteArray(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSDiscreteArray(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ CSSDiscreteArray interpolate( -+ double progress, -+ const CSSDiscreteArray &other) const override; -+ -+ bool operator==(const CSSDiscreteArray &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const CSSDiscreteArray &arrayValue); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSKeyword.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSKeyword.h -new file mode 100644 -index 0000000..7e43a0c ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSKeyword.h -@@ -0,0 +1,61 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+template -+class CSSKeywordBase : public CSSSimpleValue { -+ public: -+ static constexpr bool is_discrete_value = true; -+ -+ CSSKeywordBase() = default; -+ explicit CSSKeywordBase(const char *value); -+ explicit CSSKeywordBase(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSKeywordBase(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ -+ bool operator==(const CSSKeywordBase &other) const; -+ -+ protected: -+ std::string value; -+}; -+ -+struct CSSKeyword : public CSSKeywordBase { -+ using CSSKeywordBase::CSSKeywordBase; -+ using CSSKeywordBase::canConstruct; -+ -+ CSSKeyword interpolate(double progress, const CSSKeyword &to) const override; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const CSSKeyword &keywordValue); -+#endif // NDEBUG -+}; -+ -+struct CSSDisplay : public CSSKeywordBase { -+ using CSSKeywordBase::CSSKeywordBase; -+ using CSSKeywordBase::canConstruct; -+ -+ CSSDisplay interpolate(double progress, const CSSDisplay &to) const override; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const CSSDisplay &displayValue); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSLength.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSLength.h -new file mode 100644 -index 0000000..aa26fc8 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSLength.h -@@ -0,0 +1,41 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+struct CSSLength : public CSSResolvableValue { -+ double value; -+ bool isRelative; -+ -+ CSSLength(); -+ explicit CSSLength(double value); -+ explicit CSSLength(double value, bool isRelative); -+ explicit CSSLength(const char *value); -+ explicit CSSLength(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSLength(const folly::dynamic &value); -+ -+ static bool canConstruct(const std::string &value); -+ static bool canConstruct(const char *value); -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ CSSLength interpolate( -+ double progress, -+ const CSSLength &to, -+ const CSSResolvableValueInterpolationContext &context) const override; -+ std::optional resolve( -+ const CSSResolvableValueInterpolationContext &context) const override; -+ -+ bool operator==(const CSSLength &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const CSSLength &dimension); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSNumber.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSNumber.h -new file mode 100644 -index 0000000..902d421 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSNumber.h -@@ -0,0 +1,71 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+template -+struct CSSNumberBase : public CSSSimpleValue { -+ TValue value; -+ -+ CSSNumberBase(); -+ explicit CSSNumberBase(TValue value); -+ explicit CSSNumberBase(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSNumberBase(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ TDerived interpolate(double progress, const TDerived &other) const override; -+ -+ bool operator==(const CSSNumberBase &other) const; -+}; -+ -+#ifndef NDEBUG -+ -+template -+std::ostream &operator<<( -+ std::ostream &os, -+ const CSSNumberBase &numberValue) { -+ os << "CSSNumberBase(" << numberValue.toString() << ")"; -+ return os; -+} -+ -+#endif // NDEBUG -+ -+struct CSSDouble : public CSSNumberBase { -+ // Inherit all constructors from the base class -+ using CSSNumberBase::CSSNumberBase; -+}; -+struct CSSInteger : public CSSNumberBase { -+ // Inherit all constructors from the base class -+ using CSSNumberBase::CSSNumberBase; -+ -+ CSSInteger interpolate(double progress, const CSSInteger &other) -+ const override; -+}; -+ -+#ifdef ANDROID -+ -+// For some reason Android crashes when blurRadius is smaller than 1 so we use a -+// custom value that will never be smaller than 1 -+ -+struct CSSShadowRadiusAndroid -+ : public CSSNumberBase { -+ CSSShadowRadiusAndroid(); -+ explicit CSSShadowRadiusAndroid(double value); -+ explicit CSSShadowRadiusAndroid(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSShadowRadiusAndroid(const folly::dynamic &value); -+}; -+ -+#endif -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValue.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValue.h -new file mode 100644 -index 0000000..923997f ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValue.h -@@ -0,0 +1,79 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+ -+struct ValueInterpolatorUpdateContext { -+ const std::shared_ptr &node; -+}; -+ -+enum class RelativeTo { -+ Parent, -+ Self, -+}; -+ -+struct CSSResolvableValueInterpolationContext { -+ const std::shared_ptr &node; -+ const std::shared_ptr &viewStylesRepository; -+ const std::string &relativeProperty; -+ const RelativeTo relativeTo; -+}; -+ -+struct CSSValue { -+ // This field should be overridden in discrete value types -+ static constexpr bool is_discrete_value = false; -+ -+ virtual ~CSSValue() = default; -+ -+ virtual folly::dynamic toDynamic() const = 0; -+ virtual std::string toString() const = 0; -+}; -+ -+// Base for leaf values that can be interpolated without resolution -+template -+struct CSSSimpleValue : public CSSValue { -+ static constexpr bool is_resolvable_value = false; -+ -+ virtual TDerived interpolate(double progress, const TDerived &to) const = 0; -+}; -+ -+// Base for leaf values that need resolution before interpolation -+template -+struct CSSResolvableValue : public CSSValue { -+ static constexpr bool is_resolvable_value = true; -+ -+ virtual TDerived interpolate( -+ double progress, -+ const TDerived &to, -+ const CSSResolvableValueInterpolationContext &context) const = 0; -+ virtual std::optional resolve( -+ const CSSResolvableValueInterpolationContext &context) const = 0; -+}; -+ -+// Checks if a type is a resolvable value that needs resolution before -+// interpolation -+template -+concept Resolvable = requires { -+ { TCSSValue::is_resolvable_value } -> std::convertible_to; -+ requires TCSSValue::is_resolvable_value == true; -+}; -+ -+// Checks if a type is a discrete value -+template -+concept Discrete = requires { -+ { TCSSValue::is_discrete_value } -> std::convertible_to; -+ requires TCSSValue::is_discrete_value == true; -+}; -+ -+// Check if a type is derived from CSSValue -+template -+concept CSSValueDerived = std::is_base_of_v; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValueVariant.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValueVariant.h -new file mode 100644 -index 0000000..602d6c5 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/common/values/CSSValueVariant.h -@@ -0,0 +1,123 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+/** -+ * Macro to check if two lambda parameters have the same reference-removed type. -+ * -+ * Usage: -+ * REA_IF_SAME_TYPE(lhs, rhs) { -+ * // same-type block -+ * } else { -+ * // mismatch block -+ * } -+ */ -+#define REA_IF_SAME_TYPE(lhs, rhs) \ -+ using L = std::remove_reference_t; \ -+ using R = std::remove_reference_t; \ -+ if constexpr (std::is_same_v) // NOLINT(readability/braces) -+ -+// Checks whether a type has canConstruct(...) for a generic value -+template -+concept ValueConstructibleCSSValue = requires(TValue &&value) { -+ { -+ TCSSValue::canConstruct(std::forward(value)) -+ } -> std::same_as; -+}; // NOLINT(readability/braces) -+ -+// Checks whether a type can be constructed from a jsi::Value -+template -+concept JSIConstructibleCSSValue = -+ requires(jsi::Runtime &rt, const jsi::Value &value) { -+ { TCSSValue::canConstruct(rt, value) } -> std::same_as; -+ { TCSSValue(rt, value) } -> std::same_as; -+ }; // NOLINT(readability/braces) -+ -+// Checks whether a type can be constructed from a folly::dynamic -+template -+concept DynamicConstructibleCSSValue = requires(const folly::dynamic &value) { -+ { TCSSValue::canConstruct(value) } -> std::same_as; -+ { TCSSValue(value) } -> std::same_as; -+}; // NOLINT(readability/braces) -+ -+/** -+ * CSSValueVariant -+ * -+ * A std::variant-based container for multiple CSSValue-derived types. -+ */ -+template -+class CSSValueVariant final : public CSSValue { -+ static_assert( -+ (CSSValueDerived && ...), -+ "CSSValueVariant accepts only CSSValue-derived types"); -+ static_assert( -+ (JSIConstructibleCSSValue && ...), -+ "CSSValueVariant accepts only types that can be constructed from a jsi::Value"); -+ static_assert( -+ (DynamicConstructibleCSSValue && ...), -+ "CSSValueVariant accepts only types that can be constructed from a folly::dynamic"); -+ -+ public: -+ CSSValueVariant() = default; -+ -+ /** -+ * Construct from std::variant storage directly -+ */ -+ explicit CSSValueVariant(std::variant &&storage); -+ -+ /** -+ * Construct from jsi::Value if it matches any AllowedType's constructor -+ * (chooses the first one that matches) -+ */ -+ explicit CSSValueVariant(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ -+ /** -+ * Construct from folly::dynamic if it matches any AllowedType's constructor -+ * (chooses the first one that matches) -+ */ -+ explicit CSSValueVariant(const folly::dynamic &value); -+ -+ bool operator==(const CSSValueVariant &other) const; -+ bool operator==(const CSSValue &other) const; -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ -+ /** -+ * Interpolate (non-resolvable) -+ */ -+ CSSValueVariant interpolate( -+ const double progress, -+ const CSSValueVariant &to, -+ const ValueInterpolatorUpdateContext &context) const; -+ -+ /** -+ * Interpolate (resolvable) -+ */ -+ CSSValueVariant interpolate( -+ const double progress, -+ const CSSValueVariant &to, -+ const CSSResolvableValueInterpolationContext &context) const; -+ -+ private: -+ std::variant storage_; -+ -+ CSSValueVariant fallbackInterpolate( -+ const double progress, -+ const CSSValueVariant &to) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSAnimationConfig.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSAnimationConfig.h -new file mode 100644 -index 0000000..1defb7b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSAnimationConfig.h -@@ -0,0 +1,53 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+enum class AnimationDirection { Normal, Reverse, Alternate, AlternateReverse }; -+enum class AnimationFillMode { None, Forwards, Backwards, Both }; -+enum class AnimationPlayState { Running, Paused }; -+ -+struct CSSAnimationSettings { -+ double duration; -+ EasingFunction easingFunction; -+ double delay; -+ double iterationCount; -+ AnimationDirection direction; -+ AnimationFillMode fillMode; -+ AnimationPlayState playState; -+}; -+ -+struct PartialCSSAnimationSettings { -+ std::optional duration; -+ std::optional easingFunction; -+ std::optional delay; -+ std::optional iterationCount; -+ std::optional direction; -+ std::optional fillMode; -+ std::optional playState; -+}; -+ -+using CSSAnimationSettingsMap = -+ std::unordered_map; -+using CSSAnimationSettingsUpdatesMap = -+ std::unordered_map; -+ -+struct CSSAnimationUpdates { -+ std::optional> animationNames; -+ CSSAnimationSettingsMap newAnimationSettings; -+ CSSAnimationSettingsUpdatesMap settingsUpdates; -+}; -+ -+CSSAnimationUpdates parseCSSAnimationUpdates( -+ jsi::Runtime &rt, -+ const jsi::Value &config); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSKeyframesConfig.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSKeyframesConfig.h -new file mode 100644 -index 0000000..3ba8880 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSKeyframesConfig.h -@@ -0,0 +1,26 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using KeyframeEasingFunctions = std::unordered_map; -+ -+struct CSSKeyframesConfig { -+ std::shared_ptr styleInterpolator; -+ std::shared_ptr keyframeEasingFunctions; -+}; -+ -+CSSKeyframesConfig parseCSSAnimationKeyframesConfig( -+ jsi::Runtime &rt, -+ const jsi::Value &config, -+ const std::string &componentName, -+ const std::shared_ptr &viewStylesRepository); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSTransitionConfig.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSTransitionConfig.h -new file mode 100644 -index 0000000..1ca2106 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/CSSTransitionConfig.h -@@ -0,0 +1,50 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+struct CSSTransitionPropertySettings { -+ double duration; -+ EasingFunction easingFunction; -+ double delay; -+ bool allowDiscrete; -+}; -+ -+using CSSTransitionPropertiesSettings = -+ std::unordered_map; -+ -+struct CSSTransitionConfig { -+ TransitionProperties properties; -+ CSSTransitionPropertiesSettings settings; -+}; -+ -+struct PartialCSSTransitionConfig { -+ std::optional properties; -+ std::optional settings; -+}; -+ -+std::optional getTransitionPropertySettings( -+ const CSSTransitionPropertiesSettings &propertiesSettings, -+ const std::string &propName); -+ -+TransitionProperties getProperties(jsi::Runtime &rt, const jsi::Object &config); -+ -+CSSTransitionPropertiesSettings parseCSSTransitionPropertiesSettings( -+ jsi::Runtime &rt, -+ const jsi::Object &settings); -+ -+CSSTransitionConfig parseCSSTransitionConfig( -+ jsi::Runtime &rt, -+ const jsi::Value &config); -+ -+PartialCSSTransitionConfig parsePartialCSSTransitionConfig( -+ jsi::Runtime &rt, -+ const jsi::Value &partialConfig); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/common.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/common.h -new file mode 100644 -index 0000000..4d053e6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/configs/common.h -@@ -0,0 +1,13 @@ -+#pragma once -+ -+#include -+ -+namespace reanimated::css { -+ -+double getDuration(jsi::Runtime &rt, const jsi::Object &config); -+ -+EasingFunction getTimingFunction(jsi::Runtime &rt, const jsi::Object &config); -+ -+double getDelay(jsi::Runtime &rt, const jsi::Object &config); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSAnimation.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSAnimation.h -new file mode 100644 -index 0000000..3ac4004 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSAnimation.h -@@ -0,0 +1,51 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+class CSSAnimation { -+ public: -+ CSSAnimation( -+ jsi::Runtime &rt, -+ std::shared_ptr shadowNode, -+ std::string animationName, -+ const CSSKeyframesConfig &cssKeyframesConfig, -+ const CSSAnimationSettings &settings, -+ double timestamp); -+ -+ const std::string &getName() const; -+ std::shared_ptr getShadowNode() const; -+ -+ double getStartTimestamp(double timestamp) const; -+ AnimationProgressState getState(double timestamp) const; -+ bool isReversed() const; -+ -+ bool hasForwardsFillMode() const; -+ bool hasBackwardsFillMode() const; -+ -+ folly::dynamic getCurrentInterpolationStyle() const; -+ folly::dynamic getBackwardsFillStyle() const; -+ folly::dynamic getResetStyle() const; -+ -+ void run(double timestamp); -+ folly::dynamic update(double timestamp); -+ void updateSettings( -+ const PartialCSSAnimationSettings &updatedSettings, -+ double timestamp); -+ -+ private: -+ const std::string name_; -+ const std::shared_ptr shadowNode_; -+ AnimationFillMode fillMode_; -+ -+ const std::shared_ptr styleInterpolator_; -+ const std::shared_ptr progressProvider_; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSTransition.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSTransition.h -new file mode 100644 -index 0000000..1afdcbc ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/core/CSSTransition.h -@@ -0,0 +1,50 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class CSSTransition { -+ public: -+ CSSTransition( -+ std::shared_ptr shadowNode, -+ const CSSTransitionConfig &config, -+ const std::shared_ptr &viewStylesRepository); -+ -+ Tag getViewTag() const; -+ std::shared_ptr getShadowNode() const; -+ double getMinDelay(double timestamp) const; -+ TransitionProgressState getState() const; -+ folly::dynamic getCurrentInterpolationStyle() const; -+ TransitionProperties getProperties() const; -+ PropertyNames getAllowedProperties( -+ const folly::dynamic &oldProps, -+ const folly::dynamic &newProps); -+ -+ void updateSettings(const PartialCSSTransitionConfig &config); -+ folly::dynamic run( -+ const ChangedProps &changedProps, -+ const folly::dynamic &lastUpdateValue, -+ double timestamp); -+ folly::dynamic update(double timestamp); -+ -+ private: -+ const std::shared_ptr shadowNode_; -+ const std::shared_ptr viewStylesRepository_; -+ TransitionProperties properties_; -+ CSSTransitionPropertiesSettings settings_; -+ TransitionStyleInterpolator styleInterpolator_; -+ TransitionProgressProvider progressProvider_; -+ -+ void updateTransitionProperties(const TransitionProperties &properties); -+ bool isAllowedProperty(const std::string &propertyName) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/EasingFunctions.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/EasingFunctions.h -new file mode 100644 -index 0000000..452a96b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/EasingFunctions.h -@@ -0,0 +1,27 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+ -+extern const std::unordered_map -+ PREDEFINED_EASING_MAP; -+ -+EasingFunction getPredefinedEasingFunction(const std::string &name); -+EasingFunction createParametrizedEasingFunction( -+ jsi::Runtime &rt, -+ const jsi::Object &easingConfig); -+ -+EasingFunction createEasingFunction( -+ jsi::Runtime &rt, -+ const jsi::Value &easingConfig); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/cubicBezier.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/cubicBezier.h -new file mode 100644 -index 0000000..fca77fc ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/cubicBezier.h -@@ -0,0 +1,15 @@ -+#pragma once -+ -+#include -+ -+namespace reanimated::css { -+ -+double sampleCurveX(double t, double x1, double x2); -+double sampleCurveY(double t, double y1, double y2); -+double sampleCurveDerivativeX(double t, double x1, double x2); -+double solveCurveX(double x, double x1, double x2, double epsilon = 1e-6); -+ -+EasingFunction cubicBezier(double x1, double y1, double x2, double y2); -+EasingFunction cubicBezier(jsi::Runtime &rt, const jsi::Object &easingConfig); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/linear.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/linear.h -new file mode 100644 -index 0000000..a434118 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/linear.h -@@ -0,0 +1,20 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+double interpolateValue( -+ double x, -+ std::size_t leftIdx, -+ const std::vector &arrX, -+ const std::vector &arrY); -+ -+EasingFunction linear( -+ const std::vector &pointsX, -+ const std::vector &pointsY); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/steps.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/steps.h -new file mode 100644 -index 0000000..720c51b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/easing/steps.h -@@ -0,0 +1,14 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+EasingFunction steps( -+ const std::vector &pointsX, -+ const std::vector &pointsY); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/InterpolatorFactory.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/InterpolatorFactory.h -new file mode 100644 -index 0000000..ab61b15 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/InterpolatorFactory.h -@@ -0,0 +1,194 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+// Template class implementations -+template -+class SimpleValueInterpolatorFactory : public PropertyInterpolatorFactory { -+ public: -+ template -+ explicit SimpleValueInterpolatorFactory(const TValue &defaultValue) -+ : PropertyInterpolatorFactory(), defaultValue_(defaultValue) {} -+ -+ bool isDiscreteProperty() const override { -+ // The property is considered discrete if all of the allowed types are -+ // discrete -+ return (Discrete && ...); -+ } -+ -+ const CSSValue &getDefaultValue() const override { -+ return defaultValue_; -+ } -+ -+ std::shared_ptr create( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository) -+ const override { -+ return std::make_shared>( -+ propertyPath, defaultValue_, viewStylesRepository); -+ } -+ -+ private: -+ const CSSValueVariant defaultValue_; -+}; -+ -+template -+class ResolvableValueInterpolatorFactory : public PropertyInterpolatorFactory { -+ public: -+ template -+ explicit ResolvableValueInterpolatorFactory( -+ RelativeTo relativeTo, -+ const std::string &relativeProperty, -+ const TValue &defaultValue) -+ : PropertyInterpolatorFactory(), -+ relativeTo_(relativeTo), -+ relativeProperty_(relativeProperty), -+ defaultValue_(defaultValue) {} -+ -+ const CSSValue &getDefaultValue() const override { -+ return defaultValue_; -+ } -+ -+ std::shared_ptr create( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository) -+ const override { -+ return std::make_shared>( -+ propertyPath, -+ defaultValue_, -+ viewStylesRepository, -+ relativeTo_, -+ relativeProperty_); -+ } -+ -+ private: -+ const RelativeTo relativeTo_; -+ const std::string relativeProperty_; -+ const CSSValueVariant defaultValue_; -+}; -+ -+/** -+ * Helper function to create a concrete CSSValue from defaultValue -+ */ -+template -+CSSValueVariant createCSSValue(const auto &defaultValue) { -+ using ValueType = decltype(defaultValue); -+ CSSValueVariant result; -+ -+ auto tryOne = [&]() -> bool { -+ if constexpr (std::is_constructible_v) { -+ if constexpr (ValueConstructibleCSSValue) { -+ // For construction from a non-jsi::Value, we perform a runtime -+ // canConstruct check only if the type has a canConstruct method. -+ // (this is needed e.g. when different CSS value types can be -+ // constructed from the same value type, like CSSLength and CSSKeyword) -+ if (!TCSSValue::canConstruct(defaultValue)) { -+ return false; -+ } -+ } -+ result = CSSValueVariant( -+ std::variant(TCSSValue(defaultValue))); -+ return true; -+ } -+ return false; -+ }; -+ -+ // Try constructing with each allowed type until one succeeds -+ if (!(tryOne.template operator()() || ...)) { -+ throw std::runtime_error( -+ "[Reanimated] No compatible type found for construction from defaultValue"); -+ } -+ -+ return result; -+} -+ -+/** -+ * Value interpolator factories -+ */ -+template -+auto value(const auto &defaultValue) -> std::enable_if_t< -+ (std::is_constructible_v || ...), -+ std::shared_ptr> { -+ // Create a concrete CSSValue from the defaultValue -+ auto cssValue = createCSSValue(defaultValue); -+ return std::make_shared>( -+ std::move(cssValue)); -+} -+ -+template -+auto value( -+ RelativeTo relativeTo, -+ const std::string &relativeProperty, -+ const auto &defaultValue) -+ -> std::enable_if_t< -+ (std::is_constructible_v || ...), -+ std::shared_ptr> { -+ // Create a concrete CSSValue from the defaultValue -+ auto cssValue = createCSSValue(defaultValue); -+ return std::make_shared>( -+ relativeTo, relativeProperty, std::move(cssValue)); -+} -+ -+/** -+ * Transform operation interpolator factories -+ */ -+template -+auto transformOp(const auto &defaultValue) -> std::enable_if_t< -+ std::is_base_of_v && -+ std::is_constructible_v, -+ std::shared_ptr> { -+ return std::make_shared>( -+ std::make_shared(defaultValue)); -+} -+ -+template -+auto transformOp( -+ RelativeTo relativeTo, -+ const std::string &relativeProperty, -+ const auto &defaultValue) -+ -> std::enable_if_t< -+ std::is_base_of_v && -+ std::is_constructible_v && -+ ResolvableOperation, -+ std::shared_ptr> { -+ return std::make_shared>( -+ std::make_shared(defaultValue), relativeTo, relativeProperty); -+} -+ -+/** -+ * Record property interpolator factory -+ */ -+std::shared_ptr record( -+ const InterpolatorFactoriesRecord &factories); -+ -+/** -+ * Array property interpolator factory -+ */ -+std::shared_ptr array( -+ const InterpolatorFactoriesArray &factories); -+ -+/** -+ * Transform interpolators -+ */ -+std::shared_ptr transforms( -+ const std::unordered_map< -+ std::string, -+ std::shared_ptr> &interpolators); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/PropertyInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/PropertyInterpolator.h -new file mode 100644 -index 0000000..3d4b8be ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/PropertyInterpolator.h -@@ -0,0 +1,72 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class PropertyInterpolator { -+ public: -+ explicit PropertyInterpolator( -+ PropertyPath propertyPath, -+ const std::shared_ptr &viewStylesRepository); -+ -+ virtual folly::dynamic getStyleValue( -+ const std::shared_ptr &shadowNode) const = 0; -+ virtual folly::dynamic getResetStyle( -+ const std::shared_ptr &shadowNode) const = 0; -+ virtual folly::dynamic getFirstKeyframeValue() const = 0; -+ virtual folly::dynamic getLastKeyframeValue() const = 0; -+ virtual bool equalsReversingAdjustedStartValue( -+ const folly::dynamic &propertyValue) const = 0; -+ -+ virtual void updateKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &keyframes) = 0; -+ virtual void updateKeyframesFromStyleChange( -+ const folly::dynamic &oldStyleValue, -+ const folly::dynamic &newStyleValue, -+ const folly::dynamic &lastUpdateValue) = 0; -+ -+ virtual folly::dynamic interpolate( -+ const std::shared_ptr &shadowNode, -+ const std::shared_ptr &progressProvider) -+ const = 0; -+ -+ protected: -+ const PropertyPath propertyPath_; -+ const std::shared_ptr viewStylesRepository_; -+}; -+ -+class PropertyInterpolatorFactory { -+ public: -+ PropertyInterpolatorFactory() = default; -+ virtual ~PropertyInterpolatorFactory() = default; -+ -+ virtual bool isDiscreteProperty() const; -+ virtual const CSSValue &getDefaultValue() const = 0; -+ -+ virtual std::shared_ptr create( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository) -+ const = 0; -+}; -+ -+using PropertyInterpolatorsRecord = -+ std::unordered_map>; -+using InterpolatorFactoriesRecord = std:: -+ unordered_map>; -+ -+using PropertyInterpolatorsArray = -+ std::vector>; -+using InterpolatorFactoriesArray = -+ std::vector>; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h -new file mode 100644 -index 0000000..4ecccf4 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h -@@ -0,0 +1,39 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+class ArrayPropertiesInterpolator : public GroupPropertiesInterpolator { -+ public: -+ ArrayPropertiesInterpolator( -+ const InterpolatorFactoriesArray &factories, -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository); -+ virtual ~ArrayPropertiesInterpolator() = default; -+ -+ bool equalsReversingAdjustedStartValue( -+ const folly::dynamic &propertyValue) const override; -+ -+ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; -+ void updateKeyframesFromStyleChange( -+ const folly::dynamic &oldStyleValue, -+ const folly::dynamic &newStyleValue, -+ const folly::dynamic &lastUpdateValue) override; -+ -+ protected: -+ folly::dynamic mapInterpolators( -+ const std::function &callback) -+ const override; -+ -+ private: -+ const InterpolatorFactoriesArray &factories_; -+ PropertyInterpolatorsArray interpolators_; -+ -+ void resizeInterpolators(size_t valuesCount); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h -new file mode 100644 -index 0000000..b80657a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h -@@ -0,0 +1,35 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+class GroupPropertiesInterpolator : public PropertyInterpolator { -+ public: -+ GroupPropertiesInterpolator( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository); -+ -+ folly::dynamic getStyleValue( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getResetStyle( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getFirstKeyframeValue() const override; -+ folly::dynamic getLastKeyframeValue() const override; -+ -+ folly::dynamic interpolate( -+ const std::shared_ptr &shadowNode, -+ const std::shared_ptr &progressProvider) -+ const override; -+ -+ protected: -+ virtual folly::dynamic mapInterpolators( -+ const std::function &callback) -+ const = 0; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h -new file mode 100644 -index 0000000..94fdead ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h -@@ -0,0 +1,40 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+class RecordPropertiesInterpolator : public GroupPropertiesInterpolator { -+ public: -+ RecordPropertiesInterpolator( -+ const InterpolatorFactoriesRecord &factories, -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository); -+ virtual ~RecordPropertiesInterpolator() = default; -+ -+ bool equalsReversingAdjustedStartValue( -+ const folly::dynamic &propertyValue) const override; -+ -+ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; -+ void updateKeyframesFromStyleChange( -+ const folly::dynamic &oldStyleValue, -+ const folly::dynamic &newStyleValue, -+ const folly::dynamic &lastUpdateValue) override; -+ -+ protected: -+ folly::dynamic mapInterpolators( -+ const std::function &callback) -+ const override; -+ -+ void maybeCreateInterpolator(const std::string &propertyName); -+ -+ private: -+ const InterpolatorFactoriesRecord &factories_; -+ PropertyInterpolatorsRecord interpolators_; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h -new file mode 100644 -index 0000000..6b72e02 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h -@@ -0,0 +1,29 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+// We can just re-use the logic from the RecordPropertiesInterpolator class as -+// interpolating multiple properties from the view style during animation is the -+// same as interpolating record properties -+class AnimationStyleInterpolator : public RecordPropertiesInterpolator { -+ public: -+ explicit AnimationStyleInterpolator( -+ jsi::Runtime &rt, -+ const jsi::Value &keyframes, -+ const std::string &componentName, -+ const std::shared_ptr &viewStylesRepository) -+ : RecordPropertiesInterpolator( -+ getComponentInterpolators(componentName), -+ {}, -+ viewStylesRepository) { -+ updateKeyframes(rt, keyframes); -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h -new file mode 100644 -index 0000000..2d4769e ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h -@@ -0,0 +1,51 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class TransitionStyleInterpolator { -+ public: -+ TransitionStyleInterpolator( -+ const std::string &componentName, -+ const std::shared_ptr &viewStylesRepository); -+ -+ std::unordered_set getReversedPropertyNames( -+ const folly::dynamic &newPropertyValues) const; -+ -+ folly::dynamic interpolate( -+ const std::shared_ptr &shadowNode, -+ const TransitionProgressProvider &transitionProgressProvider) const; -+ -+ void discardFinishedInterpolators( -+ const TransitionProgressProvider &transitionProgressProvider); -+ void discardIrrelevantInterpolators( -+ const std::unordered_set &transitionPropertyNames); -+ void updateInterpolatedProperties( -+ const ChangedProps &changedProps, -+ const folly::dynamic &lastUpdateValue); -+ -+ private: -+ using MapInterpolatorsCallback = std::function &, -+ const std::shared_ptr &)>; -+ -+ const std::string componentName_; -+ const std::shared_ptr viewStylesRepository_; -+ -+ PropertyInterpolatorsRecord interpolators_; -+ -+ folly::dynamic mapInterpolators( -+ const TransitionProgressProvider &transitionProgressProvider, -+ const MapInterpolatorsCallback &callback) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformInterpolator.h -new file mode 100644 -index 0000000..2426df9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformInterpolator.h -@@ -0,0 +1,85 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+class TransformInterpolator { -+ public: -+ using Interpolators = -+ std::unordered_map>; -+ -+ struct UpdateContext { -+ const std::shared_ptr &node; -+ const std::shared_ptr &viewStylesRepository; -+ const std::shared_ptr &interpolators; -+ }; -+ -+ virtual ~TransformInterpolator() = default; -+ -+ virtual std::shared_ptr getDefaultOperation() const = 0; -+ virtual std::shared_ptr interpolate( -+ double progress, -+ const std::shared_ptr &from, -+ const std::shared_ptr &to, -+ const UpdateContext &context) const = 0; -+ virtual std::shared_ptr resolveOperation( -+ const std::shared_ptr &operation, -+ const UpdateContext &context) const = 0; -+}; -+ -+template -+class TransformInterpolatorBase : public TransformInterpolator { -+ public: -+ explicit TransformInterpolatorBase( -+ std::shared_ptr defaultOperation) -+ : defaultOperation_(defaultOperation) {} -+ -+ std::shared_ptr getDefaultOperation() const override { -+ return defaultOperation_; -+ } -+ -+ std::shared_ptr interpolate( -+ double progress, -+ const std::shared_ptr &from, -+ const std::shared_ptr &to, -+ const UpdateContext &context) const override { -+ return std::make_shared(interpolate( -+ progress, -+ *std::static_pointer_cast(from), -+ *std::static_pointer_cast(to), -+ context)); -+ } -+ -+ std::shared_ptr resolveOperation( -+ const std::shared_ptr &operation, -+ const UpdateContext &context) const override { -+ return std::make_shared(resolveOperation( -+ *std::static_pointer_cast(operation), context)); -+ } -+ -+ protected: -+ virtual TOperation interpolate( -+ double progress, -+ const TOperation &from, -+ const TOperation &to, -+ const UpdateContext &context) const = 0; -+ -+ virtual TOperation resolveOperation( -+ const TOperation &operation, -+ const UpdateContext &context) const { -+ return operation; -+ } -+ -+ private: -+ std::shared_ptr defaultOperation_; -+}; -+ -+using TransformInterpolators = TransformInterpolator::Interpolators; -+using TransformInterpolatorUpdateContext = TransformInterpolator::UpdateContext; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperation.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperation.h -new file mode 100644 -index 0000000..f8a2023 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperation.h -@@ -0,0 +1,87 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+#ifndef NDEBUG -+#include -+#include -+#endif // NDEBUG -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+using namespace react; -+ -+// Base struct for TransformOperation -+struct TransformOperation { -+ virtual bool operator==(const TransformOperation &other) const = 0; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const TransformOperation &operation); -+ virtual std::string stringifyOperationValue() const = 0; -+#endif // NDEBUG -+ -+ std::string getOperationName() const; -+ virtual TransformOp type() const = 0; -+ virtual bool isRelative() const; -+ -+ static std::shared_ptr fromJSIValue( -+ jsi::Runtime &rt, -+ const jsi::Value &value); -+ static std::shared_ptr fromDynamic( -+ const folly::dynamic &value); -+ folly::dynamic toDynamic() const; -+ virtual folly::dynamic valueToDynamic() const = 0; -+ -+ virtual bool canConvertTo(TransformOp type) const; -+ virtual std::vector> convertTo( -+ TransformOp type) const; -+ -+ virtual TransformMatrix3D toMatrix() const = 0; -+ void assertCanConvertTo(TransformOp type) const; -+}; -+ -+using TransformOperations = std::vector>; -+ -+// Template overload to inherit from in final operation structs -+template -+struct TransformOperationBase : public TransformOperation { -+ const TValue value; -+ -+ explicit TransformOperationBase(const TValue &value) : value(value) {} -+ virtual ~TransformOperationBase() = default; -+ -+ TransformOp type() const override { -+ return TOperation; -+ } -+ -+ bool operator==(const TransformOperation &other) const override { -+ if (type() != other.type()) { -+ return false; -+ } -+ const auto &otherOperation = -+ static_cast &>(other); -+ return value == otherOperation.value; -+ } -+ -+#ifndef NDEBUG -+ std::string stringifyOperationValue() const override; -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h -new file mode 100644 -index 0000000..781ad94 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h -@@ -0,0 +1,124 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+template -+concept ResolvableOperation = requires(TOperation operation) { -+ { -+ operation.value -+ } -> std::convertible_to< -+ typename std::remove_reference_t>; -+ requires Resolvable>; -+}; // NOLINT(readability/braces) -+ -+// Base implementation for simple operations -+template -+class TransformOperationInterpolator -+ : public TransformInterpolatorBase { -+ public: -+ TransformOperationInterpolator( -+ std::shared_ptr defaultOperation) -+ : TransformInterpolatorBase(defaultOperation) {} -+ -+ OperationType interpolate( -+ double progress, -+ const OperationType &from, -+ const OperationType &to, -+ const TransformInterpolatorUpdateContext &context) const override { -+ return OperationType{from.value.interpolate(progress, to.value)}; -+ } -+}; -+ -+// Specialization for PerspectiveOperation -+template <> -+class TransformOperationInterpolator -+ : public TransformInterpolatorBase { -+ public: -+ using TransformInterpolatorBase< -+ PerspectiveOperation>::TransformInterpolatorBase; -+ -+ PerspectiveOperation interpolate( -+ double progress, -+ const PerspectiveOperation &from, -+ const PerspectiveOperation &to, -+ const TransformInterpolatorUpdateContext &context) const override; -+}; -+ -+// Specialization for MatrixOperation -+template <> -+class TransformOperationInterpolator -+ : public TransformInterpolatorBase { -+ public: -+ using TransformInterpolatorBase::TransformInterpolatorBase; -+ -+ MatrixOperation interpolate( -+ double progress, -+ const MatrixOperation &from, -+ const MatrixOperation &to, -+ const TransformInterpolatorUpdateContext &context) const override; -+ -+ private: -+ TransformMatrix3D matrixFromOperation( -+ const MatrixOperation &matrixOperation, -+ const TransformInterpolatorUpdateContext &context) const; -+}; -+ -+// Specialization for resolvable operations -+template -+class TransformOperationInterpolator -+ : public TransformInterpolatorBase { -+ public: -+ TransformOperationInterpolator( -+ const std::shared_ptr &defaultOperation, -+ RelativeTo relativeTo, -+ const std::string &relativeProperty) -+ : TransformInterpolatorBase(defaultOperation), -+ relativeTo_(relativeTo), -+ relativeProperty_(relativeProperty) {} -+ -+ TOperation interpolate( -+ double progress, -+ const TOperation &from, -+ const TOperation &to, -+ const TransformInterpolatorUpdateContext &context) const override { -+ return TOperation{from.value.interpolate( -+ progress, to.value, getResolvableValueContext(context))}; -+ } -+ -+ TOperation resolveOperation( -+ const TOperation &operation, -+ const TransformInterpolatorUpdateContext &context) const override { -+ const auto &resolved = -+ operation.value.resolve(getResolvableValueContext(context)); -+ -+ if (!resolved.has_value()) { -+ return TOperation{operation.value}; -+ } -+ -+ return TOperation{resolved.value()}; -+ } -+ -+ private: -+ const RelativeTo relativeTo_; -+ const std::string relativeProperty_; -+ -+ CSSResolvableValueInterpolationContext getResolvableValueContext( -+ const TransformInterpolatorUpdateContext &context) const { -+ return { -+ .node = context.node, -+ .viewStylesRepository = context.viewStylesRepository, -+ .relativeProperty = relativeProperty_, -+ .relativeTo = relativeTo_, -+ }; -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h -new file mode 100644 -index 0000000..b0f5b10 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h -@@ -0,0 +1,98 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+struct TransformKeyframe { -+ const double fromOffset; -+ const double toOffset; -+ // If the value is nullopt, we would have to read it from the view style -+ // (in all other cases, both vectors will have the same number of elements of -+ // corresponding types - elements from the same index will form interpolation -+ // pairs) -+ const std::optional fromOperations; -+ const std::optional toOperations; -+}; -+ -+class TransformsStyleInterpolator final : public PropertyInterpolator { -+ public: -+ TransformsStyleInterpolator( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &interpolators, -+ const std::shared_ptr &viewStylesRepository); -+ -+ folly::dynamic getStyleValue( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getResetStyle( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getFirstKeyframeValue() const override; -+ folly::dynamic getLastKeyframeValue() const override; -+ bool equalsReversingAdjustedStartValue( -+ const folly::dynamic &propertyValue) const override; -+ -+ folly::dynamic interpolate( -+ const std::shared_ptr &shadowNode, -+ const std::shared_ptr &progressProvider) -+ const override; -+ -+ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; -+ void updateKeyframesFromStyleChange( -+ const folly::dynamic &oldStyleValue, -+ const folly::dynamic &newStyleValue, -+ const folly::dynamic &lastUpdateValue) override; -+ -+ private: -+ const std::shared_ptr interpolators_; -+ static const TransformOperations defaultStyleValue_; -+ -+ std::vector> keyframes_; -+ std::optional reversingAdjustedStartValue_; -+ -+ static std::optional parseTransformOperations( -+ jsi::Runtime &rt, -+ const jsi::Value &values); -+ static std::optional parseTransformOperations( -+ const folly::dynamic &values); -+ std::shared_ptr createTransformKeyframe( -+ double fromOffset, -+ double toOffset, -+ const std::optional &fromOperationsOptional, -+ const std::optional &toOperationsOptional) const; -+ std::pair -+ createTransformInterpolationPair( -+ const TransformOperations &fromOperations, -+ const TransformOperations &toOperations) const; -+ void addConvertedOperations( -+ const std::shared_ptr &sourceOperation, -+ const std::shared_ptr &targetOperation, -+ TransformOperations &sourceResult, -+ TransformOperations &targetResult) const; -+ std::shared_ptr getDefaultOperationOfType( -+ TransformOp type) const; -+ -+ size_t getIndexOfCurrentKeyframe( -+ const std::shared_ptr &progressProvider) const; -+ TransformOperations getFallbackValue( -+ const std::shared_ptr &shadowNode) const; -+ TransformOperations interpolateOperations( -+ const std::shared_ptr &shadowNode, -+ double keyframeProgress, -+ const TransformOperations &fromOperations, -+ const TransformOperations &toOperations) const; -+ -+ static folly::dynamic convertResultToDynamic( -+ const TransformOperations &operations); -+ TransformInterpolatorUpdateContext createUpdateContext( -+ const std::shared_ptr &shadowNode) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/matrix.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/matrix.h -new file mode 100644 -index 0000000..fe22827 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/matrix.h -@@ -0,0 +1,29 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+// Matrix -+struct MatrixOperation final -+ : public TransformOperationBase< -+ TransformOp::Matrix, -+ std::variant> { -+ using TransformOperationBase< -+ TransformOp::Matrix, -+ std::variant>:: -+ TransformOperationBase; -+ -+ explicit MatrixOperation(const TransformMatrix3D &value); -+ explicit MatrixOperation(const TransformOperations &operations); -+ -+ bool operator==(const TransformOperation &other) const override; -+ -+ folly::dynamic valueToDynamic() const override; -+ TransformMatrix3D toMatrix() const override; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/perspective.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/perspective.h -new file mode 100644 -index 0000000..09f7b82 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/perspective.h -@@ -0,0 +1,25 @@ -+#pragma once -+ -+#include -+ -+namespace reanimated::css { -+ -+struct PerspectiveOperation final -+ : public TransformOperationBase { -+ using TransformOperationBase:: -+ TransformOperationBase; -+ -+ explicit PerspectiveOperation(double value) -+ : TransformOperationBase( -+ CSSDouble(value)) {} -+ -+ folly::dynamic valueToDynamic() const override { -+ return value.value != 0 ? value.toDynamic() : folly::dynamic(); -+ } -+ -+ TransformMatrix3D toMatrix() const override { -+ return TransformMatrix3D::create(value.value); -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/rotate.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/rotate.h -new file mode 100644 -index 0000000..342e846 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/rotate.h -@@ -0,0 +1,47 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+template -+struct RotateOperationBase -+ : public TransformOperationBase { -+ using TransformOperationBase::TransformOperationBase; -+ -+ explicit RotateOperationBase(const std::string &value) -+ : TransformOperationBase(CSSAngle(value)) {} -+ -+ folly::dynamic valueToDynamic() const override { -+ return this->value.toDynamic(); -+ } -+ -+ TransformMatrix3D toMatrix() const override { -+ return TransformMatrix3D::create(this->value.value); -+ } -+}; -+ -+using RotateOperation = RotateOperationBase; -+ -+using RotateXOperation = RotateOperationBase; -+ -+using RotateYOperation = RotateOperationBase; -+ -+struct RotateZOperation final -+ : public RotateOperationBase { -+ using RotateOperationBase::RotateOperationBase; -+ -+ bool canConvertTo(TransformOp type) const override { -+ return type == TransformOp::Rotate; -+ } -+ -+ TransformOperations convertTo(TransformOp type) const override { -+ assertCanConvertTo(type); -+ return {std::make_shared(value)}; -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/scale.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/scale.h -new file mode 100644 -index 0000000..3889589 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/scale.h -@@ -0,0 +1,51 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+template -+struct ScaleOperationBase -+ : public TransformOperationBase { -+ using TransformOperationBase::TransformOperationBase; -+ -+ explicit ScaleOperationBase(const double value) -+ : TransformOperationBase(CSSDouble(value)) {} -+ -+ folly::dynamic valueToDynamic() const override { -+ return this->value.toDynamic(); -+ } -+ -+ TransformMatrix3D toMatrix() const override { -+ return TransformMatrix3D::create(this->value.value); -+ } -+}; -+ -+using ScaleXOperation = ScaleOperationBase; -+ -+using ScaleYOperation = ScaleOperationBase; -+ -+struct ScaleOperation final : public ScaleOperationBase { -+ using ScaleOperationBase::ScaleOperationBase; -+ -+ bool canConvertTo(TransformOp type) const override { -+ return type == TransformOp::ScaleX || type == TransformOp::ScaleY; -+ } -+ -+ TransformOperations convertTo(TransformOp type) const override { -+ assertCanConvertTo(type); -+ if (type == TransformOp::ScaleX) { -+ return { -+ std::make_shared(value), -+ std::make_shared(value)}; -+ } else { -+ return { -+ std::make_shared(value), -+ std::make_shared(value)}; -+ } -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/skew.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/skew.h -new file mode 100644 -index 0000000..d23502f ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/skew.h -@@ -0,0 +1,29 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+template -+struct SkewOperationBase : public TransformOperationBase { -+ using TransformOperationBase::TransformOperationBase; -+ -+ explicit SkewOperationBase(const std::string &value) -+ : TransformOperationBase(CSSAngle(value)) {} -+ -+ folly::dynamic valueToDynamic() const override { -+ return this->value.toDynamic(); -+ } -+ -+ TransformMatrix3D toMatrix() const override { -+ return TransformMatrix3D::create(this->value.value); -+ } -+}; -+ -+using SkewXOperation = SkewOperationBase; -+ -+using SkewYOperation = SkewOperationBase; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/translate.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/translate.h -new file mode 100644 -index 0000000..44f0665 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/transforms/operations/translate.h -@@ -0,0 +1,40 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+template -+struct TranslateOperationBase -+ : public TransformOperationBase { -+ using TransformOperationBase::TransformOperationBase; -+ -+ explicit TranslateOperationBase(double value) -+ : TransformOperationBase(CSSLength(value)) {} -+ explicit TranslateOperationBase(const std::string &value) -+ : TransformOperationBase(CSSLength(value)) {} -+ -+ bool isRelative() const override { -+ return this->value.isRelative; -+ } -+ -+ folly::dynamic valueToDynamic() const override { -+ return this->value.toDynamic(); -+ } -+ -+ TransformMatrix3D toMatrix() const override { -+ if (this->value.isRelative) { -+ throw std::invalid_argument( -+ "[Reanimated] Cannot convert relative translate to the matrix."); -+ } -+ return TransformMatrix3D::create(this->value.value); -+ } -+}; -+ -+using TranslateXOperation = TranslateOperationBase; -+ -+using TranslateYOperation = TranslateOperationBase; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h -new file mode 100644 -index 0000000..a5af3e6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h -@@ -0,0 +1,49 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+/** -+ * Concrete implementation of ValueInterpolator for CSS values that require -+ * resolution before interpolation. This class handles interpolation of relative -+ * values (e.g., percentage length values) that need to be resolved to absolute -+ * values using the context describing the ShadowNode before the interpolation -+ * can occur. -+ */ -+template -+class ResolvableValueInterpolator final -+ : public SimpleValueInterpolator { -+ static_assert( -+ (... && std::is_base_of::value), -+ "[Reanimated] ResolvableValueInterpolator: All interpolated types must inherit from CSSValue"); -+ -+ public: -+ using ValueType = -+ typename SimpleValueInterpolator::ValueType; -+ -+ explicit ResolvableValueInterpolator( -+ const PropertyPath &propertyPath, -+ const ValueType &defaultStyleValue, -+ const std::shared_ptr &viewStylesRepository, -+ RelativeTo relativeTo, -+ std::string relativeProperty); -+ -+ protected: -+ folly::dynamic interpolateValue( -+ double progress, -+ const std::shared_ptr &fromValue, -+ const std::shared_ptr &toValue, -+ const ValueInterpolatorUpdateContext &context) const override; -+ -+ private: -+ RelativeTo relativeTo_; -+ std::string relativeProperty_; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h -new file mode 100644 -index 0000000..b1460ae ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h -@@ -0,0 +1,43 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+/** -+ * Concrete implementation of ValueInterpolator for simple CSS values that don't -+ * require resolution before interpolation. This class handles direct -+ * interpolation between values without any additional processing or resolution. -+ */ -+template -+class SimpleValueInterpolator : public ValueInterpolator { -+ static_assert( -+ (... && std::is_base_of::value), -+ "[Reanimated] SimpleValueInterpolator: All interpolated types must inherit from CSSValue"); -+ -+ public: -+ using ValueType = CSSValueVariant; -+ -+ explicit SimpleValueInterpolator( -+ const PropertyPath &propertyPath, -+ const ValueType &defaultStyleValue, -+ const std::shared_ptr &viewStylesRepository); -+ -+ protected: -+ std::shared_ptr createValue( -+ jsi::Runtime &rt, -+ const jsi::Value &value) const override; -+ -+ std::shared_ptr createValue( -+ const folly::dynamic &value) const override; -+ -+ folly::dynamic interpolateValue( -+ double progress, -+ const std::shared_ptr &fromValue, -+ const std::shared_ptr &toValue, -+ const ValueInterpolatorUpdateContext &context) const override; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ValueInterpolator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ValueInterpolator.h -new file mode 100644 -index 0000000..5dd9537 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/interpolation/values/ValueInterpolator.h -@@ -0,0 +1,78 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+struct ValueKeyframe { -+ double offset; -+ std::optional> value; -+}; -+ -+/** -+ * Base class for CSS value interpolators that provides common functionality -+ * for interpolating CSS values during animations. This class should be extended -+ * by concrete implementations for specific CSS value types to provide -+ * type-specific interpolation logic. -+ */ -+class ValueInterpolator : public PropertyInterpolator { -+ public: -+ explicit ValueInterpolator( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &defaultValue, -+ const std::shared_ptr &viewStylesRepository); -+ virtual ~ValueInterpolator() = default; -+ -+ folly::dynamic getStyleValue( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getResetStyle( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getFirstKeyframeValue() const override; -+ folly::dynamic getLastKeyframeValue() const override; -+ bool equalsReversingAdjustedStartValue( -+ const folly::dynamic &propertyValue) const override; -+ -+ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; -+ void updateKeyframesFromStyleChange( -+ const folly::dynamic &oldStyleValue, -+ const folly::dynamic &newStyleValue, -+ const folly::dynamic &lastUpdateValue) override; -+ -+ folly::dynamic interpolate( -+ const std::shared_ptr &shadowNode, -+ const std::shared_ptr &progressProvider) -+ const override; -+ -+ protected: -+ std::vector keyframes_; -+ std::shared_ptr defaultStyleValue_; -+ folly::dynamic defaultStyleValueDynamic_; -+ folly::dynamic reversingAdjustedStartValue_; -+ -+ virtual std::shared_ptr createValue( -+ jsi::Runtime &rt, -+ const jsi::Value &value) const = 0; -+ virtual std::shared_ptr createValue( -+ const folly::dynamic &value) const = 0; -+ virtual folly::dynamic interpolateValue( -+ double progress, -+ const std::shared_ptr &fromValue, -+ const std::shared_ptr &toValue, -+ const ValueInterpolatorUpdateContext &context) const = 0; -+ -+ private: -+ folly::dynamic convertOptionalToDynamic( -+ const std::optional> &value) const; -+ std::shared_ptr getFallbackValue( -+ const std::shared_ptr &shadowNode) const; -+ size_t getToKeyframeIndex( -+ const std::shared_ptr &progressProvider) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/misc/ViewStylesRepository.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/misc/ViewStylesRepository.h -new file mode 100644 -index 0000000..8365c0d ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/misc/ViewStylesRepository.h -@@ -0,0 +1,61 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+using namespace react; -+ -+struct CachedShadowNode { -+ LayoutMetrics layoutMetrics; -+ std::shared_ptr viewProps; -+}; -+ -+class ViewStylesRepository { -+ public: -+ ViewStylesRepository( -+ const std::shared_ptr &staticPropsRegistry, -+ const std::shared_ptr &animatedPropsRegistry); -+ -+ void setUIManager(const std::shared_ptr &uiManager) { -+ uiManager_ = uiManager; -+ } -+ -+ jsi::Value getNodeProp( -+ const std::shared_ptr &shadowNode, -+ const std::string &propName); -+ jsi::Value getParentNodeProp( -+ const std::shared_ptr &shadowNode, -+ const std::string &propName); -+ folly::dynamic getStyleProp(Tag tag, const PropertyPath &propertyPath); -+ -+ void clearNodesCache(); -+ -+ private: -+ std::shared_ptr uiManager_; -+ std::shared_ptr staticPropsRegistry_; -+ std::shared_ptr animatedPropsRegistry_; -+ -+ std::unordered_map shadowNodeCache_; -+ -+ void updateCacheIfNeeded( -+ CachedShadowNode &cachedNode, -+ const std::shared_ptr &shadowNode); -+ -+ static folly::dynamic getPropertyValue( -+ const folly::dynamic &value, -+ const PropertyPath &propertyPath); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/AnimationProgressProvider.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/AnimationProgressProvider.h -new file mode 100644 -index 0000000..74f2257 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/AnimationProgressProvider.h -@@ -0,0 +1,68 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+enum class AnimationProgressState { -+ Pending, // When the animation is waiting for the delay to pass -+ Running, -+ Paused, -+ Finished -+}; -+ -+class AnimationProgressProvider final : public KeyframeProgressProvider, -+ public RawProgressProvider { -+ public: -+ AnimationProgressProvider( -+ double timestamp, -+ double duration, -+ double delay, -+ double iterationCount, -+ AnimationDirection direction, -+ EasingFunction easingFunction, -+ const std::shared_ptr &keyframeEasingFunctions); -+ -+ void setIterationCount(double iterationCount); -+ void setDirection(AnimationDirection direction); -+ void setEasingFunction(const EasingFunction &easingFunction); -+ -+ AnimationDirection getDirection() const; -+ double getGlobalProgress() const override; -+ double getKeyframeProgress(double fromOffset, double toOffset) const override; -+ AnimationProgressState getState(double timestamp) const; -+ double getPauseTimestamp() const; -+ double getTotalPausedTime(double timestamp) const; -+ double getStartTimestamp(double timestamp) const; -+ -+ void pause(double timestamp); -+ void play(double timestamp); -+ void resetProgress() override; -+ -+ protected: -+ std::optional calculateRawProgress(double timestamp) override; -+ -+ private: -+ double iterationCount_; -+ AnimationDirection direction_; -+ EasingFunction easingFunction_; -+ std::shared_ptr keyframeEasingFunctions_; -+ -+ unsigned currentIteration_ = 1; -+ double previousIterationsDuration_ = 0; -+ double pauseTimestamp_ = 0; -+ double totalPausedTime_ = 0; -+ -+ bool shouldFinish(double timestamp) const; -+ -+ double updateIterationProgress(double currentIterationElapsedTime); -+ double applyAnimationDirection(double iterationProgress) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/KeyframeProgressProvider.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/KeyframeProgressProvider.h -new file mode 100644 -index 0000000..2b61d44 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/KeyframeProgressProvider.h -@@ -0,0 +1,13 @@ -+#pragma once -+ -+namespace reanimated::css { -+ -+class KeyframeProgressProvider { -+ public: -+ virtual double getGlobalProgress() const = 0; -+ -+ virtual double getKeyframeProgress(double fromOffset, double toOffset) -+ const = 0; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/RawProgressProvider.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/RawProgressProvider.h -new file mode 100644 -index 0000000..9256aad ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/RawProgressProvider.h -@@ -0,0 +1,31 @@ -+#pragma once -+ -+#include -+namespace reanimated::css { -+ -+class RawProgressProvider { -+ public: -+ RawProgressProvider(double timestamp, double duration, double delay); -+ -+ void setDuration(double duration); -+ void setDelay(double delay); -+ -+ virtual void resetProgress(); -+ void update(double timestamp); -+ -+ protected: -+ double duration_; -+ double delay_; -+ double creationTimestamp_; -+ -+ std::optional rawProgress_; -+ std::optional previousRawProgress_; -+ -+ /** -+ * Calculates the progress of the animation at the given timestamp without -+ * applying any decorations (e.g. animation direction, easing) -+ */ -+ virtual std::optional calculateRawProgress(double timestamp) = 0; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/TransitionProgressProvider.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/TransitionProgressProvider.h -new file mode 100644 -index 0000000..696605b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/progress/TransitionProgressProvider.h -@@ -0,0 +1,82 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+enum class TransitionProgressState { Pending, Running, Finished }; -+ -+class TransitionPropertyProgressProvider final -+ : public KeyframeProgressProvider, -+ public RawProgressProvider { -+ public: -+ TransitionPropertyProgressProvider( -+ double timestamp, -+ double duration, -+ double delay, -+ const EasingFunction &easingFunction); -+ TransitionPropertyProgressProvider( -+ double timestamp, -+ double duration, -+ double delay, -+ const EasingFunction &easingFunction, -+ double reversingShorteningFactor); -+ -+ double getGlobalProgress() const override; -+ double getKeyframeProgress(double fromOffset, double toOffset) const override; -+ double getRemainingDelay(double timestamp) const; -+ double getReversingShorteningFactor() const; -+ TransitionProgressState getState() const; -+ -+ protected: -+ std::optional calculateRawProgress(double timestamp) override; -+ -+ private: -+ EasingFunction easingFunction_; -+ double reversingShorteningFactor_ = 1; -+ -+ double getElapsedTime(double timestamp) const; -+}; -+ -+using TransitionPropertyProgressProviders = std::unordered_map< -+ std::string, -+ std::shared_ptr>; -+ -+class TransitionProgressProvider final { -+ public: -+ TransitionProgressState getState() const; -+ double getMinDelay(double timestamp) const; -+ TransitionPropertyProgressProviders getPropertyProgressProviders() const; -+ std::unordered_set getRemovedProperties() const; -+ -+ void discardFinishedProgressProviders(); -+ void discardIrrelevantProgressProviders( -+ const std::unordered_set &transitionPropertyNames); -+ void runProgressProviders( -+ double timestamp, -+ const CSSTransitionPropertiesSettings &propertiesSettings, -+ const PropertyNames &changedPropertyNames, -+ const std::unordered_set &reversedPropertyNames); -+ void update(double timestamp); -+ -+ private: -+ TransitionPropertyProgressProviders propertyProgressProviders_; -+ -+ std::unordered_set removedProperties_; -+ -+ std::shared_ptr -+ createReversingShorteningProgressProvider( -+ double timestamp, -+ const CSSTransitionPropertySettings &propertySettings, -+ const TransitionPropertyProgressProvider &existingProgressProvider); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSAnimationsRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSAnimationsRegistry.h -new file mode 100644 -index 0000000..c9330a1 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSAnimationsRegistry.h -@@ -0,0 +1,95 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using CSSAnimationsMap = -+ std::unordered_map>; -+using CSSAnimationsVector = std::vector>; -+ -+class CSSAnimationsRegistry -+ : public UpdatesRegistry, -+ std::enable_shared_from_this { -+ public: -+ using SettingsUpdates = -+ std::vector>; -+ -+ bool isEmpty() const override; -+ bool hasUpdates() const; -+ -+ void apply( -+ jsi::Runtime &rt, -+ const std::shared_ptr &shadowNode, -+ const std::optional> &animationNames, -+ const CSSAnimationsMap &newAnimations, -+ const CSSAnimationSettingsUpdatesMap &settingsUpdates, -+ double timestamp); -+ void remove(Tag viewTag) override; -+ -+ void update(double timestamp); -+ -+ private: -+ using AnimationToIndexMap = -+ std::unordered_map, size_t>; -+ using RunningAnimationIndicesMap = std::unordered_map>; -+ using AnimationsToRevertMap = -+ std::unordered_map>; -+ struct RegistryEntry { -+ const CSSAnimationsVector animationsVector; -+ const AnimationToIndexMap animationToIndexMap; -+ }; -+ -+ using Registry = std::unordered_map; -+ -+ Registry registry_; -+ -+ RunningAnimationIndicesMap runningAnimationIndicesMap_; -+ AnimationsToRevertMap animationsToRevertMap_; -+ DelayedItemsManager> delayedAnimationsManager_; -+ -+ CSSAnimationsVector buildAnimationsVector( -+ jsi::Runtime &rt, -+ const std::shared_ptr &shadowNode, -+ const std::optional> &animationNames, -+ const std::optional &newAnimations) const; -+ AnimationToIndexMap buildAnimationToIndexMap( -+ const CSSAnimationsVector &animationsVector) const; -+ void updateAnimationSettings( -+ const CSSAnimationsVector &animationsVector, -+ const CSSAnimationSettingsUpdatesMap &settingsUpdates, -+ double timestamp); -+ -+ void updateViewAnimations( -+ Tag viewTag, -+ const std::vector &animationIndices, -+ double timestamp, -+ bool addToBatch); -+ void scheduleOrActivateAnimation( -+ size_t animationIndex, -+ const std::shared_ptr &animation, -+ double timestamp); -+ void removeViewAnimations(Tag viewTag); -+ void applyViewAnimationsStyle(Tag viewTag, double timestamp); -+ void activateDelayedAnimations(double timestamp); -+ void handleAnimationsToRevert(double timestamp); -+ -+ static bool addStyleUpdates( -+ folly::dynamic &target, -+ const folly::dynamic &updates, -+ bool shouldOverride); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSKeyframesRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSKeyframesRegistry.h -new file mode 100644 -index 0000000..c253890 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSKeyframesRegistry.h -@@ -0,0 +1,38 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class CSSKeyframesRegistry { -+ public: -+ CSSKeyframesRegistry( -+ const std::shared_ptr &viewStylesRepository); -+ -+ const CSSKeyframesConfig &get( -+ const std::string &animationName, -+ const std::string &componentName); -+ void set( -+ const std::string &animationName, -+ const std::string &componentName, -+ CSSKeyframesConfig &&config); -+ void remove( -+ const std::string &animationName, -+ const std::string &componentName); -+ -+ private: -+ using ConfigsByComponentName = -+ std::unordered_map; -+ -+ std::unordered_map registry_; -+ const std::shared_ptr viewStylesRepository_; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSTransitionsRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSTransitionsRegistry.h -new file mode 100644 -index 0000000..c0aa7a6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/CSSTransitionsRegistry.h -@@ -0,0 +1,56 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class CSSTransitionsRegistry -+ : public UpdatesRegistry, -+ public std::enable_shared_from_this { -+ public: -+ CSSTransitionsRegistry( -+ const std::shared_ptr &staticPropsRegistry, -+ const GetAnimationTimestampFunction &getCurrentTimestamp); -+ -+ bool isEmpty() const override; -+ bool hasUpdates() const; -+ -+ void add(const std::shared_ptr &transition); -+ void updateSettings(Tag viewTag, const PartialCSSTransitionConfig &config); -+ void remove(Tag viewTag) override; -+ -+ void update(double timestamp); -+ -+ private: -+ using Registry = std::unordered_map>; -+ -+ const GetAnimationTimestampFunction &getCurrentTimestamp_; -+ const std::shared_ptr staticPropsRegistry_; -+ -+ Registry registry_; -+ -+ std::unordered_set runningTransitionTags_; -+ DelayedItemsManager delayedTransitionsManager_; -+ -+ void activateDelayedTransitions(double timestamp); -+ void scheduleOrActivateTransition( -+ const std::shared_ptr &transition); -+ PropsObserver createPropsObserver(Tag viewTag); -+ void updateInUpdatesRegistry( -+ const std::shared_ptr &transition, -+ const folly::dynamic &updates); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/StaticPropsRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/StaticPropsRegistry.h -new file mode 100644 -index 0000000..2b14815 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/registries/StaticPropsRegistry.h -@@ -0,0 +1,37 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+using namespace react; -+ -+using PropsObserver = std::function< -+ void(const folly::dynamic &oldProps, const folly::dynamic &newProps)>; -+ -+class StaticPropsRegistry { -+ public: -+ void set(jsi::Runtime &rt, Tag viewTag, const jsi::Value &props); -+ folly::dynamic get(Tag viewTag) const; -+ bool has(Tag viewTag) const; -+ void remove(Tag viewTag); -+ bool isEmpty() const; -+ -+ bool hasObservers(Tag viewTag) const; -+ void setObserver(Tag viewTag, PropsObserver observer); -+ void removeObserver(Tag viewTag); -+ -+ private: -+ std::unordered_map registry_; -+ std::unordered_map observers_; -+ -+ void notifyObservers( -+ Tag viewTag, -+ const folly::dynamic &oldProps, -+ const folly::dynamic &newProps); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGLength.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGLength.h -new file mode 100644 -index 0000000..421de88 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGLength.h -@@ -0,0 +1,36 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+struct SVGLength : public CSSSimpleValue { -+ double value; -+ bool isPercentage; -+ -+ SVGLength(); -+ explicit SVGLength(double value); -+ explicit SVGLength(double value, bool isPercentage); -+ explicit SVGLength(const char *value); -+ explicit SVGLength(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit SVGLength(const folly::dynamic &value); -+ -+ static bool canConstruct(const std::string &value); -+ static bool canConstruct(const char *value); -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ SVGLength interpolate(double progress, const SVGLength &to) const override; -+ -+ bool operator==(const SVGLength &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const SVGLength &dimension); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGStrokeDashArray.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGStrokeDashArray.h -new file mode 100644 -index 0000000..79388d2 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/svg/values/SVGStrokeDashArray.h -@@ -0,0 +1,36 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+struct SVGStrokeDashArray : public CSSSimpleValue { -+ std::vector values; -+ -+ SVGStrokeDashArray(); -+ explicit SVGStrokeDashArray(const std::vector &values); -+ explicit SVGStrokeDashArray(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit SVGStrokeDashArray(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ SVGStrokeDashArray interpolate(double progress, const SVGStrokeDashArray &to) -+ const override; -+ -+ bool operator==(const SVGStrokeDashArray &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const SVGStrokeDashArray &strokeDashArray); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/DelayedItemsManager.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/DelayedItemsManager.h -new file mode 100644 -index 0000000..5f6292b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/DelayedItemsManager.h -@@ -0,0 +1,47 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+template -+struct DelayedItem { -+ const double timestamp; -+ const TValue value; -+ -+ DelayedItem(double timestamp, TValue value); -+}; -+ -+template -+struct DelayedItemComparator { -+ bool operator()( -+ const DelayedItem &lhs, -+ const DelayedItem &rhs) const; -+}; -+ -+template -+class DelayedItemsManager { -+ using Item = DelayedItem; -+ using ItemSet = std::set>; -+ using ItemMap = std::unordered_map; -+ -+ ItemSet itemsSet_; -+ ItemMap itemsMap_; -+ -+ public: -+ void add(double timestamp, TValue value); -+ Item pop(); -+ bool remove(TValue value); -+ const Item &top() const; -+ bool empty() const; -+ size_t size() const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/algorithms.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/algorithms.h -new file mode 100644 -index 0000000..1221ae3 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/algorithms.h -@@ -0,0 +1,10 @@ -+#pragma once -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+size_t firstSmallerOrEqual(double x, const std::vector &arr); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/interpolators.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/interpolators.h -new file mode 100644 -index 0000000..01a22ea ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/interpolators.h -@@ -0,0 +1,23 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+std::shared_ptr createPropertyInterpolator( -+ const std::string &propertyName, -+ const PropertyPath &propertyPath, -+ const InterpolatorFactoriesRecord &factories, -+ const std::shared_ptr &viewStylesRepository); -+ -+std::shared_ptr createPropertyInterpolator( -+ size_t arrayIndex, -+ const PropertyPath &propertyPath, -+ const InterpolatorFactoriesArray &factories, -+ const std::shared_ptr &viewStylesRepository); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/keyframes.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/keyframes.h -new file mode 100644 -index 0000000..d7842e6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/keyframes.h -@@ -0,0 +1,15 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+ -+std::vector> parseJSIKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &keyframes); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/props.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/props.h -new file mode 100644 -index 0000000..9c1cecd ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/CSS/utils/props.h -@@ -0,0 +1,36 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+struct ChangedProps { -+ const folly::dynamic oldProps; -+ const folly::dynamic newProps; -+ const PropertyNames changedPropertyNames; -+}; -+ -+bool isDiscreteProperty( -+ const std::string &propName, -+ const std::string &componentName); -+ -+// We need to specify it here because there are 2 methods referencing -+// each other in the recursion and areArraysDifferentRecursive must be -+// aware that getChangedPropsRecursive exists -+std::pair getChangedPropsRecursive( -+ const folly::dynamic &oldProp, -+ const folly::dynamic &newProp); -+ -+ChangedProps getChangedProps( -+ const folly::dynamic &oldProps, -+ const folly::dynamic &newProps, -+ const PropertyNames &allowedProperties); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitHook.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitHook.h -new file mode 100644 -index 0000000..1ca39bf ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitHook.h -@@ -0,0 +1,51 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+#include -+ -+using namespace facebook::react; -+ -+namespace reanimated { -+ -+class ReanimatedCommitHook -+ : public UIManagerCommitHook, -+ public std::enable_shared_from_this { -+ public: -+ ReanimatedCommitHook( -+ const std::shared_ptr &uiManager, -+ const std::shared_ptr &updatesRegistryManager, -+ const std::shared_ptr &layoutAnimationsProxy); -+ -+ ~ReanimatedCommitHook() noexcept override; -+ -+ void commitHookWasRegistered(UIManager const &) noexcept override {} -+ -+ void commitHookWasUnregistered(UIManager const &) noexcept override {} -+ -+ void maybeInitializeLayoutAnimations(SurfaceId surfaceId); -+ -+ RootShadowNode::Unshared shadowTreeWillCommit( -+ ShadowTree const &shadowTree, -+ RootShadowNode::Shared const &oldRootShadowNode, -+ RootShadowNode::Unshared const &newRootShadowNode -+#if REACT_NATIVE_MINOR_VERSION >= 80 -+ , -+ const ShadowTreeCommitOptions &commitOptions -+#endif -+ ) noexcept override; -+ -+ private: -+ std::shared_ptr uiManager_; -+ std::shared_ptr updatesRegistryManager_; -+ std::shared_ptr layoutAnimationsProxy_; -+ -+ SurfaceId currentMaxSurfaceId_ = -1; -+ -+ std::mutex mutex_; // Protects `currentMaxSurfaceId_`. -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitShadowNode.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitShadowNode.h -new file mode 100644 -index 0000000..5263921 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitShadowNode.h -@@ -0,0 +1,46 @@ -+#pragma once -+ -+#include -+ -+using namespace facebook::react; -+ -+namespace reanimated { -+ -+// We use this trait to mark that a commit was created by Reanimated. -+// Traits are copied when nodes are cloned, so this information -+// won't be lost unless someone explicitly overrides it. -+// We need this information to skip unnecessary updates in -+// the commit hook. -+// Currently RN traits go up to 10, so hopefully -+// the arbitrarily chosen numbers 27 and 28 will be safe :) -+ -+// We have to use 2 traits, because we want to distinguish reanimated -+// commits both in the commit hook and mount hook. If we only had one trait -+// and didn't remove it in the commit hook, then any node that would clone -+// this node would also have our commit trait, rendering this trait useless. -+constexpr ShadowNodeTraits::Trait ReanimatedCommitTrait{1 << 27}; -+constexpr ShadowNodeTraits::Trait ReanimatedMountTrait{1 << 28}; -+ -+class ReanimatedCommitShadowNode : public ShadowNode { -+ public: -+ inline void setReanimatedCommitTrait() { -+ traits_.set(ReanimatedCommitTrait); -+ } -+ inline void unsetReanimatedCommitTrait() { -+ traits_.unset(ReanimatedCommitTrait); -+ } -+ inline bool hasReanimatedCommitTrait() { -+ return traits_.check(ReanimatedCommitTrait); -+ } -+ inline void setReanimatedMountTrait() { -+ traits_.set(ReanimatedMountTrait); -+ } -+ inline void unsetReanimatedMountTrait() { -+ traits_.unset(ReanimatedMountTrait); -+ } -+ inline bool hasReanimatedMountTrait() { -+ return traits_.check(ReanimatedMountTrait); -+ } -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedMountHook.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedMountHook.h -new file mode 100644 -index 0000000..ea077dd ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedMountHook.h -@@ -0,0 +1,37 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+#include -+ -+namespace reanimated { -+ -+using namespace facebook::react; -+ -+class ReanimatedMountHook : public UIManagerMountHook { -+ public: -+ ReanimatedMountHook( -+ const std::shared_ptr &uiManager, -+ const std::shared_ptr &updatesRegistryManager, -+ const std::function &requestFlush); -+ ~ReanimatedMountHook() noexcept override; -+ -+ void shadowTreeDidMount( -+ RootShadowNode::Shared const &rootShadowNode, -+#if REACT_NATIVE_MINOR_VERSION >= 81 -+ HighResTimeStamp /*unmountTime*/ -+#else -+ double /*unmountTime*/ -+#endif // REACT_NATIVE_MINOR_VERSION >= 81 -+ ) noexcept override; -+ -+ private: -+ const std::shared_ptr uiManager_; -+ const std::shared_ptr updatesRegistryManager_; -+ const std::function requestFlush_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ShadowTreeCloner.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ShadowTreeCloner.h -new file mode 100644 -index 0000000..278ae1e ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ShadowTreeCloner.h -@@ -0,0 +1,26 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+using namespace facebook; -+using namespace react; -+ -+namespace reanimated { -+ -+using PropsMap = -+ std::unordered_map>; -+using ChildrenMap = -+ std::unordered_map>; -+ -+RootShadowNode::Unshared cloneShadowTreeWithNewProps( -+ const RootShadowNode &oldRootNode, -+ const PropsMap &propsMap); -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/AnimatedPropsRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/AnimatedPropsRegistry.h -new file mode 100644 -index 0000000..57c2c24 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/AnimatedPropsRegistry.h -@@ -0,0 +1,19 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+class AnimatedPropsRegistry : public UpdatesRegistry { -+ public: -+ void update(jsi::Runtime &rt, const jsi::Value &operations); -+ void remove(Tag tag) override; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistry.h -new file mode 100644 -index 0000000..6f32763 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistry.h -@@ -0,0 +1,78 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace react; -+ -+using UpdatesBatch = -+ std::vector, folly::dynamic>>; -+using RegistryMap = std::unordered_map< -+ Tag, -+ std::pair, folly::dynamic>>; -+ -+#ifdef ANDROID -+struct PropsToRevert { -+ std::shared_ptr shadowNode; -+ std::unordered_set props; -+}; -+ -+using PropsToRevertMap = std::unordered_map; -+#endif -+ -+class UpdatesRegistry { -+ public: -+ virtual ~UpdatesRegistry() {} -+ -+ std::lock_guard lock() const; -+ -+ virtual bool isEmpty() const; -+ folly::dynamic get(Tag tag) const; -+ virtual void remove(Tag tag) = 0; -+ -+#ifdef ANDROID -+ bool hasPropsToRevert() const; -+ void collectPropsToRevert(PropsToRevertMap &propsToRevertMap); -+#endif -+ -+ void flushUpdates(UpdatesBatch &updatesBatch); -+ void collectProps(PropsMap &propsMap); -+ -+ protected: -+ mutable std::mutex mutex_; -+ RegistryMap updatesRegistry_; -+ -+ void addUpdatesToBatch( -+ const std::shared_ptr &shadowNode, -+ const folly::dynamic &props); -+ folly::dynamic getUpdatesFromRegistry(const Tag tag) const; -+ void setInUpdatesRegistry( -+ const std::shared_ptr &shadowNode, -+ const folly::dynamic &props); -+ void removeFromUpdatesRegistry(Tag tag); -+ -+ private: -+ UpdatesBatch updatesBatch_; -+ -+ void flushUpdatesToRegistry(const UpdatesBatch &updatesBatch); -+ -+#ifdef ANDROID -+ PropsToRevertMap propsToRevertMap_; -+ -+ void updatePropsToRevert(Tag tag, const folly::dynamic *newProps = nullptr); -+#endif -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistryManager.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistryManager.h -new file mode 100644 -index 0000000..b5a54cb ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/updates/UpdatesRegistryManager.h -@@ -0,0 +1,70 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace css; -+ -+class UpdatesRegistryManager { -+ public: -+ explicit UpdatesRegistryManager( -+ const std::shared_ptr &staticPropsRegistry); -+ -+ std::lock_guard lock() const; -+ -+ // TODO - ensure that other sublibraries can easily hook into this registry -+ // manager (e.g. add priority to registries) -+ void addRegistry(const std::shared_ptr ®istry); -+ -+ void pauseReanimatedCommits(); -+ bool shouldReanimatedSkipCommit(); -+ void unpauseReanimatedCommits(); -+ -+ void pleaseCommitAfterPause(); -+ bool shouldCommitAfterPause(); -+ void cancelCommitAfterPause(); -+ -+ void markNodeAsRemovable(const std::shared_ptr &shadowNode); -+ void unmarkNodeAsRemovable(Tag viewTag); -+ void handleNodeRemovals(const RootShadowNode &rootShadowNode); -+ PropsMap collectProps(); -+ -+#ifdef ANDROID -+ bool hasPropsToRevert(); -+ void collectPropsToRevertBySurface( -+ std::unordered_map &propsMapBySurface); -+ void clearPropsToRevert(SurfaceId surfaceId); -+#endif -+ -+ private: -+ using RemovableShadowNodes = -+ std::unordered_map>; -+ -+ mutable std::mutex mutex_; -+ std::atomic isPaused_; -+ std::atomic shouldCommitAfterPause_; -+ RemovableShadowNodes removableShadowNodes_; -+ std::vector> registries_; -+ const std::shared_ptr staticPropsRegistry_; -+ -+#ifdef ANDROID -+ PropsToRevertMap propsToRevertMap_; -+ -+ static void addToPropsMap( -+ PropsMap &propsMap, -+ const std::shared_ptr &shadowNode, -+ const folly::dynamic &props); -+#endif -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationType.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationType.h -new file mode 100644 -index 0000000..6c36ae0 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationType.h -@@ -0,0 +1,7 @@ -+#pragma once -+ -+typedef enum LayoutAnimationType { -+ ENTERING = 1, -+ EXITING = 2, -+ LAYOUT = 3, -+} LayoutAnimationType; -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsManager.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsManager.h -new file mode 100644 -index 0000000..5e9d3ca ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsManager.h -@@ -0,0 +1,64 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace worklets; -+ -+struct LayoutAnimationConfig { -+ int tag; -+ LayoutAnimationType type; -+ std::shared_ptr config; -+}; -+ -+class LayoutAnimationsManager { -+ public: -+ explicit LayoutAnimationsManager(const std::shared_ptr &jsLogger) -+ : jsLogger_(jsLogger) {} -+ void configureAnimationBatch( -+ const std::vector &layoutAnimationsBatch); -+ void setShouldAnimateExiting(const int tag, const bool value); -+ bool shouldAnimateExiting(const int tag, const bool shouldAnimate); -+ bool hasLayoutAnimation(const int tag, const LayoutAnimationType type); -+ void startLayoutAnimation( -+ jsi::Runtime &rt, -+ const int tag, -+ const LayoutAnimationType type, -+ const jsi::Object &values); -+ void clearLayoutAnimationConfig(const int tag); -+ void cancelLayoutAnimation(jsi::Runtime &rt, const int tag) const; -+ void transferConfigFromNativeID(const int nativeId, const int tag); -+ -+ private: -+ std::unordered_map> &getConfigsForType( -+ const LayoutAnimationType type); -+ -+ std::shared_ptr jsLogger_; -+ -+ std::unordered_map> -+ enteringAnimationsForNativeID_; -+ std::unordered_map> enteringAnimations_; -+ std::unordered_map> exitingAnimations_; -+ std::unordered_map> layoutAnimations_; -+ std::unordered_map shouldAnimateExitingForTag_; -+ mutable std::recursive_mutex -+ animationsMutex_; // Protects `enteringAnimations_`, `exitingAnimations_`, -+ // `layoutAnimations_` and `shouldAnimateExitingForTag_`. -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsProxy.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsProxy.h -new file mode 100644 -index 0000000..8930af9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsProxy.h -@@ -0,0 +1,140 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+class ReanimatedModuleProxy; -+ -+using namespace facebook; -+ -+struct LayoutAnimation { -+ std::shared_ptr finalView, currentView; -+ Tag parentTag; -+ std::optional opacity; -+ int count = 1; -+ LayoutAnimation &operator=(const LayoutAnimation &other) = default; -+}; -+ -+struct LayoutAnimationsProxy -+ : public MountingOverrideDelegate, -+ public std::enable_shared_from_this { -+ mutable std::unordered_map> nodeForTag_; -+ mutable std::unordered_map layoutAnimations_; -+ mutable std::recursive_mutex mutex; -+ mutable SurfaceManager surfaceManager; -+ mutable std::unordered_set> deadNodes; -+ mutable std::unordered_map leastRemoved; -+ mutable std::vector finishedAnimationTags_; -+ std::shared_ptr layoutAnimationsManager_; -+ std::shared_ptr contextContainer_; -+ SharedComponentDescriptorRegistry componentDescriptorRegistry_; -+ jsi::Runtime &uiRuntime_; -+ const std::shared_ptr uiScheduler_; -+ LayoutAnimationsProxy( -+ std::shared_ptr layoutAnimationsManager, -+ SharedComponentDescriptorRegistry componentDescriptorRegistry, -+ std::shared_ptr contextContainer, -+ jsi::Runtime &uiRuntime, -+ const std::shared_ptr uiScheduler) -+ : layoutAnimationsManager_(layoutAnimationsManager), -+ contextContainer_(contextContainer), -+ componentDescriptorRegistry_(componentDescriptorRegistry), -+ uiRuntime_(uiRuntime), -+ uiScheduler_(uiScheduler) {} -+ -+ void startEnteringAnimation(const int tag, ShadowViewMutation &mutation) -+ const; -+ void startExitingAnimation(const int tag, ShadowViewMutation &mutation) const; -+ void startLayoutAnimation(const int tag, const ShadowViewMutation &mutation) -+ const; -+ -+ void transferConfigFromNativeID(const std::string nativeId, const int tag) -+ const; -+ std::optional progressLayoutAnimation( -+ int tag, -+ const jsi::Object &newStyle); -+ std::optional endLayoutAnimation(int tag, bool shouldRemove); -+ void maybeCancelAnimation(const int tag) const; -+ -+ void parseRemoveMutations( -+ std::unordered_map &movedViews, -+ ShadowViewMutationList &mutations, -+ std::vector> &roots) const; -+ void handleRemovals( -+ ShadowViewMutationList &filteredMutations, -+ std::vector> &roots) const; -+ -+ void handleUpdatesAndEnterings( -+ ShadowViewMutationList &filteredMutations, -+ const std::unordered_map &movedViews, -+ ShadowViewMutationList &mutations, -+ const PropsParserContext &propsParserContext, -+ SurfaceId surfaceId) const; -+ void addOngoingAnimations( -+ SurfaceId surfaceId, -+ ShadowViewMutationList &mutations) const; -+ void updateOngoingAnimationTarget( -+ const int tag, -+ const ShadowViewMutation &mutation) const; -+ std::shared_ptr cloneViewWithoutOpacity( -+ facebook::react::ShadowViewMutation &mutation, -+ const PropsParserContext &propsParserContext) const; -+ void maybeRestoreOpacity( -+ LayoutAnimation &layoutAnimation, -+ const jsi::Object &newStyle) const; -+ void maybeUpdateWindowDimensions( -+ facebook::react::ShadowViewMutation &mutation, -+ SurfaceId surfaceId) const; -+ void createLayoutAnimation( -+ const ShadowViewMutation &mutation, -+ ShadowView &oldView, -+ const SurfaceId &surfaceId, -+ const int tag) const; -+ -+ void updateIndexForMutation(ShadowViewMutation &mutation) const; -+ -+ void removeRecursively( -+ std::shared_ptr node, -+ ShadowViewMutationList &mutations) const; -+ bool startAnimationsRecursively( -+ std::shared_ptr node, -+ const bool shouldRemoveSubviewsWithoutAnimations, -+ const bool shouldAnimate, -+ const bool isScreenPop, -+ ShadowViewMutationList &mutations) const; -+ void endAnimationsRecursively( -+ std::shared_ptr node, -+ ShadowViewMutationList &mutations) const; -+ void maybeDropAncestors( -+ std::shared_ptr node, -+ std::shared_ptr child, -+ ShadowViewMutationList &cleanupMutations) const; -+ -+ const ComponentDescriptor &getComponentDescriptorForShadowView( -+ const ShadowView &shadowView) const; -+ -+ // MountingOverrideDelegate -+ -+ bool shouldOverridePullTransaction() const override; -+ std::optional pullTransaction( -+ SurfaceId surfaceId, -+ MountingTransaction::Number number, -+ const TransactionTelemetry &telemetry, -+ ShadowViewMutationList mutations) const override; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsUtils.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsUtils.h -new file mode 100644 -index 0000000..8cf936a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsUtils.h -@@ -0,0 +1,174 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+struct Rect { -+ double width, height; -+}; -+ -+struct Frame { -+ std::optional x, y, width, height; -+ Frame(jsi::Runtime &runtime, const jsi::Object &newStyle) { -+ if (newStyle.hasProperty(runtime, "originX")) { -+ x = newStyle.getProperty(runtime, "originX").asNumber(); -+ } -+ if (newStyle.hasProperty(runtime, "originY")) { -+ y = newStyle.getProperty(runtime, "originY").asNumber(); -+ } -+ if (newStyle.hasProperty(runtime, "width")) { -+ width = newStyle.getProperty(runtime, "width").asNumber(); -+ } -+ if (newStyle.hasProperty(runtime, "height")) { -+ height = newStyle.getProperty(runtime, "height").asNumber(); -+ } -+ } -+}; -+ -+struct UpdateValues { -+ Props::Shared newProps; -+ Frame frame; -+}; -+ -+struct Snapshot { -+ double x, y, width, height, windowWidth, windowHeight; -+ Snapshot(const ShadowView &shadowView, Rect window) { -+ const auto &frame = shadowView.layoutMetrics.frame; -+ x = frame.origin.x; -+ y = frame.origin.y; -+ width = frame.size.width; -+ height = frame.size.height; -+ windowWidth = window.width; -+ windowHeight = window.height; -+ } -+}; -+ -+typedef enum ExitingState { -+ UNDEFINED = 1, -+ WAITING = 2, -+ ANIMATING = 4, -+ DEAD = 8, -+ MOVED = 16, -+ DELETED = 32, -+} ExitingState; -+ -+struct MutationNode; -+ -+/** -+ Represents a view that was either removed or had a child removed from the -+ ShadowTree -+ */ -+struct Node { -+ std::vector> children, unflattenedChildren; -+ std::shared_ptr parent, unflattenedParent; -+ Tag tag; -+ void removeChildFromUnflattenedTree(std::shared_ptr child); -+ void applyMutationToIndices(ShadowViewMutation mutation); -+ void insertChildren(std::vector> &newChildren); -+ void insertUnflattenedChildren( -+ std::vector> &newChildren); -+ virtual bool isMutationMode(); -+ explicit Node(const Tag tag) : tag(tag) {} -+ Node(Node &&node) -+ : children(std::move(node.children)), -+ unflattenedChildren(std::move(node.unflattenedChildren)), -+ tag(node.tag) {} -+ Node(Node &node) -+ : children(node.children), -+ unflattenedChildren(node.unflattenedChildren), -+ tag(node.tag) {} -+ virtual ~Node() = default; -+}; -+ -+/** -+ Represents a view that was removed from the ShadowTree -+ */ -+struct MutationNode : public Node { -+ ShadowViewMutation mutation; -+ ExitingState state = UNDEFINED; -+ explicit MutationNode(ShadowViewMutation &mutation) -+ : Node(mutation.oldChildShadowView.tag), mutation(mutation) {} -+ MutationNode(ShadowViewMutation &mutation, Node &&node) -+ : Node(std::move(node)), mutation(mutation) {} -+ bool isMutationMode() override; -+}; -+ -+struct SurfaceManager { -+ mutable std::unordered_map< -+ SurfaceId, -+ std::shared_ptr>> -+ props_; -+ mutable std::unordered_map windows_; -+ -+ std::unordered_map &getUpdateMap(SurfaceId surfaceId); -+ void -+ updateWindow(SurfaceId surfaceId, double windowWidth, double windowHeight); -+ Rect getWindow(SurfaceId surfaceId); -+}; -+ -+static inline void updateLayoutMetrics( -+ LayoutMetrics &layoutMetrics, -+ Frame &frame) { -+ // we use optional's here to avoid overwriting non-animated values -+ if (frame.width) { -+ layoutMetrics.frame.size.width = *frame.width; -+ } -+ if (frame.height) { -+ layoutMetrics.frame.size.height = *frame.height; -+ } -+ if (frame.x) { -+ layoutMetrics.frame.origin.x = *frame.x; -+ } -+ if (frame.y) { -+ layoutMetrics.frame.origin.y = *frame.y; -+ } -+} -+ -+static inline bool isRNSScreen(std::shared_ptr node) { -+ const auto &componentName = node->mutation.oldChildShadowView.componentName; -+ return !std::strcmp(componentName, "RNSScreenStack") || -+ !std::strcmp(componentName, "RNSScreen") || -+ !std::strcmp(componentName, "RNSModalScreen"); -+} -+ -+static inline bool hasLayoutChanged(const ShadowViewMutation &mutation) { -+ return mutation.oldChildShadowView.layoutMetrics.frame != -+ mutation.newChildShadowView.layoutMetrics.frame; -+} -+ -+static inline void mergeAndSwap( -+ std::vector> &A, -+ std::vector> &B) { -+ std::vector> merged; -+ auto it1 = A.begin(), it2 = B.begin(); -+ while (it1 != A.end() && it2 != B.end()) { -+ if ((*it1)->mutation.index < (*it2)->mutation.index) { -+ merged.push_back(*it1); -+ it1++; -+ } else { -+ merged.push_back(*it2); -+ it2++; -+ } -+ } -+ while (it1 != A.end()) { -+ merged.push_back(*it1); -+ it1++; -+ } -+ while (it2 != B.end()) { -+ merged.push_back(*it2); -+ it2++; -+ } -+ std::swap(A, merged); -+} -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/PropValueProcessor.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/PropValueProcessor.h -new file mode 100644 -index 0000000..e44f2c6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/PropValueProcessor.h -@@ -0,0 +1,47 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace react; -+ -+class PropValueProcessor { -+ public: -+ static const std::unordered_set layoutProps; -+ static const std::unordered_set styleProps; -+ -+ static std::string processPropValue( -+ const std::string &propName, -+ const std::shared_ptr &shadowNode, -+ jsi::Runtime &rt); -+ -+ private: -+ static std::string processLayoutProp( -+ const std::string &propName, -+ const LayoutableShadowNode *layoutableShadowNode); -+ -+ static std::string processStyleProp( -+ const std::string &propName, -+ const std::shared_ptr &viewProps, -+ jsi::Runtime &rt); -+ -+ static std::string intColorToHex(const int val); -+ -+ static jsi::Object boxShadowPreprocessing( -+ const BoxShadow &boxShadow, -+ jsi::Runtime &rt); -+ -+ static bool isLayoutProp(const std::string &propName); -+ -+ static bool isStyleProp(const std::string &propName); -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxy.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxy.h -new file mode 100644 -index 0000000..9e0599a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxy.h -@@ -0,0 +1,265 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace css; -+ -+using UpdatesBatch = -+ std::vector, folly::dynamic>>; -+ -+class ReanimatedModuleProxy -+ : public ReanimatedModuleProxySpec, -+ public std::enable_shared_from_this { -+ public: -+ ReanimatedModuleProxy( -+ const std::shared_ptr &workletsModuleProxy, -+ jsi::Runtime &rnRuntime, -+ const std::shared_ptr &jsCallInvoker, -+ const PlatformDepMethodsHolder &platformDepMethodsHolder, -+ const bool isReducedMotion); -+ -+ // We need this init method to initialize callbacks with -+ // weak_from_this() which is available only after the object -+ // is fully constructed. -+ void init(const PlatformDepMethodsHolder &platformDepMethodsHolder); -+ -+ ~ReanimatedModuleProxy(); -+ -+ jsi::Value registerEventHandler( -+ jsi::Runtime &rt, -+ const jsi::Value &worklet, -+ const jsi::Value &eventName, -+ const jsi::Value &emitterReactTag) override; -+ void unregisterEventHandler( -+ jsi::Runtime &rt, -+ const jsi::Value ®istrationId) override; -+ -+ jsi::Value getViewProp( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &propName, -+ const jsi::Value &callback) override; -+ -+ jsi::Value getStaticFeatureFlag(jsi::Runtime &rt, const jsi::Value &name) -+ override; -+ jsi::Value setDynamicFeatureFlag( -+ jsi::Runtime &rt, -+ const jsi::Value &name, -+ const jsi::Value &value) override; -+ -+ jsi::Value configureLayoutAnimationBatch( -+ jsi::Runtime &rt, -+ const jsi::Value &layoutAnimationsBatch) override; -+ void setShouldAnimateExiting( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &shouldAnimate) override; -+ -+ void onRender(double timestampMs); -+ -+ bool isAnyHandlerWaitingForEvent( -+ const std::string &eventName, -+ const int emitterReactTag); -+ -+ void maybeRequestRender(); -+ -+ bool handleEvent( -+ const std::string &eventName, -+ const int emitterReactTag, -+ const jsi::Value &payload, -+ double currentTime); -+ -+ inline std::shared_ptr getJSLogger() const { -+ return jsLogger_; -+ } -+ -+ bool handleRawEvent(const RawEvent &rawEvent, double currentTime); -+ -+ void maybeRunCSSLoop(); -+ double getCssTimestamp(); -+ -+ void performOperations(); -+ -+ void setViewStyle( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &viewStyle) override; -+ -+ void markNodeAsRemovable( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper) override; -+ void unmarkNodeAsRemovable(jsi::Runtime &rt, const jsi::Value &viewTag) -+ override; -+ -+ void registerCSSKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &animationName, -+ const jsi::Value &viewName, -+ const jsi::Value &keyframesConfig) override; -+ void unregisterCSSKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &animationName, -+ const jsi::Value &viewName) override; -+ -+ void applyCSSAnimations( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &animationUpdates) override; -+ void unregisterCSSAnimations(const jsi::Value &viewTag) override; -+ -+ void registerCSSTransition( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &transitionConfig) override; -+ void updateCSSTransition( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &configUpdates) override; -+ void unregisterCSSTransition(jsi::Runtime &rt, const jsi::Value &viewTag) -+ override; -+ -+ void cssLoopCallback(const double /*timestampMs*/); -+ -+ void dispatchCommand( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeValue, -+ const jsi::Value &commandNameValue, -+ const jsi::Value &argsValue); -+ -+ jsi::String obtainProp( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &propName); -+ -+ jsi::Value measure(jsi::Runtime &rt, const jsi::Value &shadowNodeValue); -+ -+ void initializeFabric(const std::shared_ptr &uiManager); -+ -+ void initializeLayoutAnimationsProxy(); -+ -+ std::string obtainPropFromShadowNode( -+ jsi::Runtime &rt, -+ const std::string &propName, -+ const std::shared_ptr &shadowNode); -+ -+ jsi::Value registerSensor( -+ jsi::Runtime &rt, -+ const jsi::Value &sensorType, -+ const jsi::Value &interval, -+ const jsi::Value &iosReferenceFrame, -+ const jsi::Value &sensorDataContainer) override; -+ void unregisterSensor(jsi::Runtime &rt, const jsi::Value &sensorId) override; -+ -+ void cleanupSensors(); -+ -+ jsi::Value subscribeForKeyboardEvents( -+ jsi::Runtime &rt, -+ const jsi::Value &keyboardEventContainer, -+ const jsi::Value &isStatusBarTranslucent, -+ const jsi::Value &isNavigationBarTranslucent) override; -+ void unsubscribeFromKeyboardEvents( -+ jsi::Runtime &rt, -+ const jsi::Value &listenerId) override; -+ -+ inline LayoutAnimationsManager &layoutAnimationsManager() { -+ return *layoutAnimationsManager_; -+ } -+ -+ [[nodiscard]] inline bool isReducedMotion() const { -+ return isReducedMotion_; -+ } -+ -+ [[nodiscard]] inline std::shared_ptr -+ getWorkletsModuleProxy() const { -+ return workletsModuleProxy_; -+ } -+ -+ void requestFlushRegistry(); -+ std::function createRegistriesLeakCheck(); -+ -+ private: -+ void commitUpdates(jsi::Runtime &rt, const UpdatesBatch &updatesBatch); -+ -+ const bool isReducedMotion_; -+ bool shouldFlushRegistry_ = false; -+ std::shared_ptr workletsModuleProxy_; -+ -+ std::unique_ptr eventHandlerRegistry_; -+ const RequestRenderFunction requestRender_; -+ std::vector> frameCallbacks_; -+ volatile bool renderRequested_{false}; -+ std::function onRenderCallback_; -+ AnimatedSensorModule animatedSensorModule_; -+ const std::shared_ptr jsLogger_; -+ std::shared_ptr layoutAnimationsManager_; -+ GetAnimationTimestampFunction getAnimationTimestamp_; -+ -+ bool cssLoopRunning_{false}; -+ bool shouldUpdateCssAnimations_{true}; -+ double currentCssTimestamp_{0}; -+ -+ const std::shared_ptr animatedPropsRegistry_; -+ const std::shared_ptr staticPropsRegistry_; -+ const std::shared_ptr updatesRegistryManager_; -+ const std::shared_ptr viewStylesRepository_; -+ const std::shared_ptr cssAnimationKeyframesRegistry_; -+ const std::shared_ptr cssAnimationsRegistry_; -+ const std::shared_ptr cssTransitionsRegistry_; -+ -+ const SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction_; -+ -+ std::shared_ptr uiManager_; -+ std::shared_ptr layoutAnimationsProxy_; -+ std::shared_ptr commitHook_; -+ std::shared_ptr mountHook_; -+ std::set layoutAnimationFlushRequests_; -+ bool layoutAnimationRenderRequested_; -+ -+ const KeyboardEventSubscribeFunction subscribeForKeyboardEventsFunction_; -+ const KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEventsFunction_; -+ -+#ifndef NDEBUG -+ worklets::SingleInstanceChecker singleInstanceChecker_; -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxySpec.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxySpec.h -new file mode 100644 -index 0000000..11b281b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/ReanimatedModuleProxySpec.h -@@ -0,0 +1,125 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+#include -+ -+using namespace facebook; -+using namespace react; -+ -+namespace reanimated { -+ -+class JSI_EXPORT ReanimatedModuleProxySpec : public TurboModule { -+ protected: -+ explicit ReanimatedModuleProxySpec( -+ const std::shared_ptr &jsInvoker); -+ -+ public: -+ // events -+ virtual jsi::Value registerEventHandler( -+ jsi::Runtime &rt, -+ const jsi::Value &worklet, -+ const jsi::Value &eventName, -+ const jsi::Value &emitterReactTag) = 0; -+ virtual void unregisterEventHandler( -+ jsi::Runtime &rt, -+ const jsi::Value ®istrationId) = 0; -+ -+ // views -+ virtual jsi::Value getViewProp( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &propName, -+ const jsi::Value &callback) = 0; -+ -+ // sensors -+ virtual jsi::Value registerSensor( -+ jsi::Runtime &rt, -+ const jsi::Value &sensorType, -+ const jsi::Value &interval, -+ const jsi::Value &iosReferenceFrame, -+ const jsi::Value &sensorDataContainer) = 0; -+ virtual void unregisterSensor( -+ jsi::Runtime &rt, -+ const jsi::Value &sensorId) = 0; -+ -+ // keyboard -+ virtual jsi::Value subscribeForKeyboardEvents( -+ jsi::Runtime &rt, -+ const jsi::Value &keyboardEventContainer, -+ const jsi::Value &isStatusBarTranslucent, -+ const jsi::Value &isNavigationBarTranslucent) = 0; -+ virtual void unsubscribeFromKeyboardEvents( -+ jsi::Runtime &rt, -+ const jsi::Value &listenerId) = 0; -+ -+ // feature flags -+ virtual jsi::Value getStaticFeatureFlag( -+ jsi::Runtime &rt, -+ const jsi::Value &name) = 0; -+ -+ virtual jsi::Value setDynamicFeatureFlag( -+ jsi::Runtime &rt, -+ const jsi::Value &name, -+ const jsi::Value &value) = 0; -+ -+ // layout animations -+ virtual jsi::Value configureLayoutAnimationBatch( -+ jsi::Runtime &rt, -+ const jsi::Value &layoutAnimationsBatch) = 0; -+ -+ virtual void setShouldAnimateExiting( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &shouldAnimate) = 0; -+ -+ // JS View style -+ virtual void setViewStyle( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &viewStyle) = 0; -+ -+ // Cleanup -+ virtual void markNodeAsRemovable( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper) = 0; -+ virtual void unmarkNodeAsRemovable( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag) = 0; -+ -+ // CSS animation keyframes -+ virtual void registerCSSKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &animationName, -+ const jsi::Value &viewName, -+ const jsi::Value &keyframesConfig) = 0; -+ virtual void unregisterCSSKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &animationName, -+ const jsi::Value &viewName) = 0; -+ -+ // CSS animations -+ virtual void applyCSSAnimations( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &animationUpdates) = 0; -+ virtual void unregisterCSSAnimations(const jsi::Value &viewTag) = 0; -+ -+ // CSS transitions -+ virtual void registerCSSTransition( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &transitionConfig) = 0; -+ virtual void updateCSSTransition( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &configUpdates) = 0; -+ virtual void unregisterCSSTransition( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag) = 0; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/RNRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/RNRuntimeDecorator.h -new file mode 100644 -index 0000000..0d627de ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/RNRuntimeDecorator.h -@@ -0,0 +1,28 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+ -+using namespace facebook; -+ -+namespace reanimated { -+ -+class RNRuntimeDecorator { -+ public: -+ static void decorate( -+ jsi::Runtime &rnRuntime, -+ jsi::Runtime &uiRuntime, -+ const std::shared_ptr &reanimatedModuleProxy); -+ -+#ifdef IS_REANIMATED_EXAMPLE_APP -+ private: -+ static void installDebugBindings( -+ jsi::Runtime &rnRuntime, -+ const std::shared_ptr &reanimatedModuleProxy); -+#endif // IS_REANIMATED_EXAMPLE_APP -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/UIRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/UIRuntimeDecorator.h -new file mode 100644 -index 0000000..d46d967 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/UIRuntimeDecorator.h -@@ -0,0 +1,26 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+using namespace facebook; -+ -+namespace reanimated { -+ -+class UIRuntimeDecorator { -+ public: -+ static void decorate( -+ jsi::Runtime &uiRuntime, -+ const ObtainPropFunction obtainPropFunction, -+ const UpdatePropsFunction updateProps, -+ const MeasureFunction measure, -+ const DispatchCommandFunction dispatchCommand, -+ const GetAnimationTimestampFunction getAnimationTimestamp, -+ const SetGestureStateFunction setGestureState, -+ const ProgressLayoutAnimationFunction progressLayoutAnimation, -+ const EndLayoutAnimationFunction endLayoutAnimation, -+ const MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueue); -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/FeatureFlags.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/FeatureFlags.h -new file mode 100644 -index 0000000..b42d685 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/FeatureFlags.h -@@ -0,0 +1,44 @@ -+#pragma once -+#include -+#include -+ -+namespace reanimated { -+ -+class StaticFeatureFlags { -+ public: -+#ifdef REANIMATED_FEATURE_FLAGS -+ -+// Convert the value under x into a string -+#define XTOSTRING(x) #x -+// Evaluate the flag value; without this step, it would stringify the flag name -+// itself instead of the flag value -+#define TOSTRING(x) XTOSTRING(x) -+ -+ static constexpr bool getFlag(const std::string_view &name) { -+ std::string nameStr = name.data(); -+ std::string featureFlags = TOSTRING(REANIMATED_FEATURE_FLAGS); -+ if (featureFlags.find("[" + nameStr + ":") == std::string::npos) { -+ throw std::logic_error("Unable to recognize flag: " + nameStr); -+ } -+ return featureFlags.find("[" + nameStr + ":true]") != std::string::npos; -+ } -+ -+#else -+ -+ static constexpr bool getFlag(const std::string_view &) { -+ return false; -+ } -+ -+#endif -+}; -+ -+class DynamicFeatureFlags { -+ public: -+ static bool getFlag(const std::string &name); -+ static void setFlag(const std::string &name, bool value); -+ -+ private: -+ static std::unordered_map flags_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformDepMethodsHolder.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformDepMethodsHolder.h -new file mode 100644 -index 0000000..dbea4ba ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformDepMethodsHolder.h -@@ -0,0 +1,63 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+using namespace facebook; -+using namespace react; -+ -+namespace reanimated { -+ -+using UpdatePropsFunction = -+ std::function; -+using ObtainPropFunction = std::function; -+using DispatchCommandFunction = std::function; -+using MeasureFunction = std::function< -+ jsi::Value(jsi::Runtime &rt, const jsi::Value &shadowNodeValue)>; -+ -+using RequestRenderFunction = -+ std::function)>; -+using SynchronouslyUpdateUIPropsFunction = -+ std::function &, const std::vector &)>; -+using GetAnimationTimestampFunction = std::function; -+ -+using ProgressLayoutAnimationFunction = -+ std::function; -+using EndLayoutAnimationFunction = std::function; -+ -+using RegisterSensorFunction = -+ std::function)>; -+using UnregisterSensorFunction = std::function; -+using SetGestureStateFunction = std::function; -+using KeyboardEventSubscribeFunction = -+ std::function, bool, bool)>; -+using KeyboardEventUnsubscribeFunction = std::function; -+using MaybeFlushUIUpdatesQueueFunction = std::function; -+ -+struct PlatformDepMethodsHolder { -+ RequestRenderFunction requestRender; -+#ifdef ANDROID -+ SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction; -+#endif // ANDROID -+ GetAnimationTimestampFunction getAnimationTimestamp; -+ RegisterSensorFunction registerSensor; -+ UnregisterSensorFunction unregisterSensor; -+ SetGestureStateFunction setGestureStateFunction; -+ KeyboardEventSubscribeFunction subscribeForKeyboardEvents; -+ KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEvents; -+ MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueueFunction; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedSystraceSection.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedSystraceSection.h -new file mode 100644 -index 0000000..c3b17e9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedSystraceSection.h -@@ -0,0 +1,135 @@ -+#pragma once -+#include -+#include -+ -+#ifdef REANIMATED_PROFILING -+ -+#if defined(__APPLE__) -+#include -+ -+#if OS_LOG_TARGET_HAS_10_15_FEATURES -+#include -+#include -+#include -+#endif // OS_LOG_TARGET_HAS_10_15_FEATURES -+ -+#elif defined(ANDROID) -+ -+#include -+ -+#endif // defined(ANDROID) -+ -+#endif // REANIMATED_PROFILING -+ -+namespace reanimated { -+ -+#if defined(ANDROID) && defined(REANIMATED_PROFILING) -+ -+struct ReanimatedSystraceSection { -+ public: -+ template -+ explicit ReanimatedSystraceSection( -+ const char *name, -+ ConvertsToStringPiece &&...args) { -+ ATrace_beginSection(name); -+ } -+ -+ ~ReanimatedSystraceSection() { -+ ATrace_endSection(); -+ } -+}; -+ -+// The apple part is copied from React Native -+// from -+// https://github.com/facebook/react-native/blob/5697d923a05119314b4cfcd556cb243986637764/packages/react-native/ReactCommon/cxxreact/SystraceSection.h -+#elif defined(__APPLE__) && OS_LOG_TARGET_HAS_10_15_FEATURES && \ -+ defined(REANIMATED_PROFILING) -+ -+template -+struct renderer { -+ static std::string render(const T &t) { -+ std::ostringstream oss; -+ oss << t; -+ return oss.str(); -+ } -+}; -+ -+template -+static auto render(const T &t) -+ -> decltype(renderer::render(std::declval())) { -+ return renderer::render(t); -+} -+ -+inline os_log_t instrumentsLogHandle = nullptr; -+ -+static inline os_log_t getOrCreateInstrumentsLogHandle() { -+ if (!instrumentsLogHandle) { -+ instrumentsLogHandle = os_log_create( -+ "dev.reanimated.instruments", OS_LOG_CATEGORY_POINTS_OF_INTEREST); -+ } -+ return instrumentsLogHandle; -+} -+ -+struct ReanimatedSystraceSection { -+ public: -+ template -+ explicit ReanimatedSystraceSection( -+ const char *name, -+ ConvertsToStringPiece &&...args) { -+ os_log_t instrumentsLogHandle = -+ reanimated::getOrCreateInstrumentsLogHandle(); -+ -+ // If the log isn't enabled, we don't want the performance overhead of the -+ // rest of the code below. -+ if (!os_signpost_enabled(instrumentsLogHandle)) { -+ return; -+ } -+ -+ name_ = name; -+ -+ const auto argsVector = -+ std::vector{reanimated::render(args)...}; -+ std::string argsString = ""; -+ for (size_t i = 0; i < argsVector.size(); i += 2) { -+ argsString += argsVector[i] + "=" + argsVector[i + 1] + ";"; -+ } -+ -+ signpostID_ = os_signpost_id_make_with_pointer(instrumentsLogHandle, this); -+ -+ os_signpost_interval_begin( -+ instrumentsLogHandle, -+ signpostID_, -+ "Reanimated", -+ "%s begin: %s", -+ name, -+ argsString.c_str()); -+ } -+ -+ ~ReanimatedSystraceSection() { -+ os_signpost_interval_end( -+ reanimated::instrumentsLogHandle, -+ signpostID_, -+ "Reanimated", -+ "%s end", -+ name_.data()); -+ } -+ -+ private: -+ os_signpost_id_t signpostID_ = OS_SIGNPOST_ID_INVALID; -+ std::string_view name_; -+}; -+ -+#else -+ -+struct ReanimatedSystraceSection { -+ public: -+ template -+ explicit ReanimatedSystraceSection( -+ const char *name, -+ ConvertsToStringPiece &&...args) {} -+}; -+ -+#endif // defined(__APPLE__) && OS_LOG_TARGET_HAS_10_15_FEATURES && -+ // defined(REANIMATED_PROFILING) -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedVersion.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedVersion.h -new file mode 100644 -index 0000000..b490177 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/ReanimatedVersion.h -@@ -0,0 +1,20 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+ -+using namespace facebook; -+ -+namespace reanimated { -+ -+std::string getReanimatedCppVersion(); -+void injectReanimatedCppVersion(jsi::Runtime &); -+void checkJSVersion( -+ jsi::Runtime &, -+ const std::shared_ptr &); -+ -+}; // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/AnimationFrameCallback.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/AnimationFrameCallback.h -new file mode 100644 -index 0000000..9da8b47 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/AnimationFrameCallback.h -@@ -0,0 +1,37 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace facebook::jni; -+ -+class AnimationFrameCallback : public HybridClass { -+ public: -+ static auto constexpr kJavaDescriptor = -+ "Lcom/swmansion/reanimated/nativeProxy/AnimationFrameCallback;"; -+ -+ void onAnimationFrame(double timestampMs) { -+ callback_(timestampMs); -+ } -+ -+ static void registerNatives() { -+ javaClassStatic()->registerNatives({ -+ makeNativeMethod( -+ "onAnimationFrame", AnimationFrameCallback::onAnimationFrame), -+ }); -+ } -+ -+ private: -+ friend HybridBase; -+ -+ explicit AnimationFrameCallback(std::function callback) -+ : callback_(std::move(callback)) {} -+ -+ std::function callback_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/EventHandler.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/EventHandler.h -new file mode 100644 -index 0000000..af9080d ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/EventHandler.h -@@ -0,0 +1,48 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace facebook::jni; -+ -+class EventHandler : public HybridClass { -+ public: -+ static auto constexpr kJavaDescriptor = -+ "Lcom/swmansion/reanimated/nativeProxy/EventHandler;"; -+ -+ void receiveEvent( -+ jni::alias_ref eventKey, -+ jint emitterReactTag, -+ jni::alias_ref event) { -+ ReanimatedSystraceSection s("EventHandler::receiveEvent"); -+ handler_(eventKey, emitterReactTag, event); -+ } -+ -+ static void registerNatives() { -+ javaClassStatic()->registerNatives({ -+ makeNativeMethod("receiveEvent", EventHandler::receiveEvent), -+ }); -+ } -+ -+ private: -+ friend HybridBase; -+ -+ explicit EventHandler(std::function, -+ jint emitterReactTag, -+ jni::alias_ref)> handler) -+ : handler_(std::move(handler)) {} -+ -+ std::function< -+ void(jni::alias_ref, jint, jni::alias_ref)> -+ handler_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/KeyboardWorkletWrapper.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/KeyboardWorkletWrapper.h -new file mode 100644 -index 0000000..72bbba5 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/KeyboardWorkletWrapper.h -@@ -0,0 +1,36 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace facebook::jni; -+ -+class KeyboardWorkletWrapper : public HybridClass { -+ public: -+ static auto constexpr kJavaDescriptor = -+ "Lcom/swmansion/reanimated/keyboard/KeyboardWorkletWrapper;"; -+ -+ void invoke(int keyboardState, int height) { -+ callback_(keyboardState, height); -+ } -+ -+ static void registerNatives() { -+ javaClassStatic()->registerNatives({ -+ makeNativeMethod("invoke", KeyboardWorkletWrapper::invoke), -+ }); -+ } -+ -+ private: -+ friend HybridBase; -+ -+ explicit KeyboardWorkletWrapper(std::function callback) -+ : callback_(std::move(callback)) {} -+ -+ std::function callback_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/NativeProxy.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/NativeProxy.h -new file mode 100644 -index 0000000..8a811e5 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/NativeProxy.h -@@ -0,0 +1,120 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace facebook::jni; -+ -+class NativeProxy : public jni::HybridClass, -+ std::enable_shared_from_this { -+ public: -+ static auto constexpr kJavaDescriptor = -+ "Lcom/swmansion/reanimated/NativeProxy;"; -+ static jni::local_ref initHybrid( -+ jni::alias_ref jThis, -+ jni::alias_ref jWorkletsModule, -+ jlong jsContext, -+ jni::alias_ref -+ jsCallInvokerHolder, -+ jni::alias_ref -+ fabricUIManager); -+ -+ static void registerNatives(); -+ -+ ~NativeProxy(); -+ -+ private: -+ friend HybridBase; -+ jni::global_ref javaPart_; -+ jsi::Runtime *rnRuntime_; -+ std::shared_ptr workletsModuleProxy_; -+ std::shared_ptr reanimatedModuleProxy_; -+#ifndef NDEBUG -+ void checkJavaVersion(); -+ void injectCppVersion(); -+#endif // NDEBUG -+ // removed temporarily, event listener mechanism needs to be fixed on RN side -+ // std::shared_ptr reactScheduler_; -+ // std::shared_ptr eventListener_; -+ void installJSIBindings(); -+ void synchronouslyUpdateUIProps( -+ const std::vector &intBuffer, -+ const std::vector &doubleBuffer); -+ PlatformDepMethodsHolder getPlatformDependentMethods(); -+ -+ double getAnimationTimestamp(); -+ bool isAnyHandlerWaitingForEvent( -+ const std::string &eventName, -+ const int emitterReactTag); -+ void performOperations(); -+ bool getIsReducedMotion(); -+ void requestRender(std::function onRender); -+ void registerEventHandler(); -+ void maybeFlushUIUpdatesQueue(); -+ void setGestureState(int handlerTag, int newState); -+ int registerSensor( -+ int sensorType, -+ int interval, -+ int iosReferenceFrame, -+ std::function setter); -+ void unregisterSensor(int sensorId); -+ int subscribeForKeyboardEvents( -+ std::function callback, -+ bool isStatusBarTranslucent, -+ bool isNavigationBarTranslucent); -+ void unsubscribeFromKeyboardEvents(int listenerId); -+ void handleEvent( -+ jni::alias_ref eventName, -+ jint emitterReactTag, -+ jni::alias_ref event); -+ -+ /*** -+ * Wraps a method of `NativeProxy` in a function object capturing `this` -+ * @tparam TReturn return type of passed method -+ * @tparam TParams parameter types of passed method -+ * @param methodPtr pointer to method to be wrapped -+ * @return a function object with the same signature as the method, calling -+ * that method on `this` -+ */ -+ template -+ std::function bindThis( -+ TReturn (NativeProxy::*methodPtr)(TParams...)) { -+ // It's probably safe to pass `this` as reference here... -+ return [this, methodPtr](TParams &&...args) { -+ return (this->*methodPtr)(std::forward(args)...); -+ }; -+ } -+ -+ template -+ JMethod getJniMethod(std::string const &methodName) { -+ return javaPart_->getClass()->getMethod(methodName.c_str()); -+ } -+ -+ explicit NativeProxy( -+ jni::alias_ref jThis, -+ const std::shared_ptr &workletsModuleProxy, -+ jsi::Runtime *rnRuntime, -+ const std::shared_ptr &jsCallInvoker, -+ jni::alias_ref -+ fabricUIManager); -+ -+ void invalidateCpp(); -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/SensorSetter.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/SensorSetter.h -new file mode 100644 -index 0000000..a3fe548 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/SensorSetter.h -@@ -0,0 +1,42 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace facebook::jni; -+ -+class SensorSetter : public HybridClass { -+ public: -+ static auto constexpr kJavaDescriptor = -+ "Lcom/swmansion/reanimated/nativeProxy/SensorSetter;"; -+ -+ void sensorSetter(jni::alias_ref value, int orientationDegrees) { -+ size_t size = value->size(); -+ auto elements = value->getRegion(0, size); -+ double array[7]; -+ for (size_t i = 0; i < size; i++) { -+ array[i] = elements[i]; -+ } -+ callback_(array, orientationDegrees); -+ } -+ -+ static void registerNatives() { -+ javaClassStatic()->registerNatives({ -+ makeNativeMethod("sensorSetter", SensorSetter::sensorSetter), -+ }); -+ } -+ -+ private: -+ friend HybridBase; -+ -+ explicit SensorSetter(std::function callback) -+ : callback_(std::move(callback)) {} -+ -+ std::function callback_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/abi.json -new file mode 100644 -index 0000000..d307572 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "arm64-v8a", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/libreanimated.so -new file mode 100755 -index 0000000..bd83cd4 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/libreanimated.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/abi.json -new file mode 100644 -index 0000000..c4d68de ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86_64", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/libreanimated.so -new file mode 100755 -index 0000000..81f39dc -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/libreanimated.so differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/module.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/prefab.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/prefab.json -new file mode 100644 -index 0000000..becccdf ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/prefab.json -@@ -0,0 +1,6 @@ -+{ -+ "name": "react-native-reanimated", -+ "schema_version": 2, -+ "dependencies": [], -+ "version": "4.1.6" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/prefab_publication.json/debug b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/prefab_publication.json/debug -new file mode 100644 -index 0000000..f997b54 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/prefab_publication.json/debug -@@ -0,0 +1,35 @@ -+{ -+ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "gradlePath": ":react-native-reanimated", -+ "packageInfo": { -+ "packageName": "react-native-reanimated", -+ "packageVersion": "4.1.6", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "reanimated", -+ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "arm64-v8a", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/arm64-v8a/libreanimated.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/arm64-v8a/android_gradle_build.json" -+ }, -+ { -+ "abiName": "x86_64", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/2x455616/obj/x86_64/libreanimated.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/.cxx/Debug/2x455616/x86_64/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug -new file mode 100644 -index 0000000..d4cdffc ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug -@@ -0,0 +1,18 @@ -+{ -+ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "gradlePath": ":react-native-reanimated", -+ "packageInfo": { -+ "packageName": "react-native-reanimated", -+ "packageVersion": "4.1.6", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "reanimated", -+ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", -+ "moduleExportLibraries": [], -+ "abis": [] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release -new file mode 100644 -index 0000000..48574ba ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release -@@ -0,0 +1,18 @@ -+{ -+ "installationFolder": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/release/prefab", -+ "gradlePath": ":react-native-reanimated", -+ "packageInfo": { -+ "packageName": "react-native-reanimated", -+ "packageVersion": "4.1.6", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "reanimated", -+ "moduleHeaders": "/Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", -+ "moduleExportLibraries": [], -+ "abis": [] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar -new file mode 100644 -index 0000000..bc9e18d -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ -diff --git a/node_modules/react-native-reanimated/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-reanimated/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -new file mode 100644 -index 0000000..212ed29 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -@@ -0,0 +1 @@ -+com.swmansion.reanimated -diff --git a/node_modules/react-native-reanimated/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-reanimated/android/build/outputs/logs/manifest-merger-debug-report.txt -new file mode 100644 -index 0000000..ba85a23 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/outputs/logs/manifest-merger-debug-report.txt -@@ -0,0 +1,16 @@ -+-- Merging decision tree log --- -+manifest -+ADDED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml:2:1-71 -+INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml:2:1-71 -+ package -+ INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml -+ xmlns:android -+ ADDED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml:2:11-69 -+uses-sdk -+INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml reason: use-sdk injection requested -+INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml -+INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml -+ android:targetSdkVersion -+ INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml -+ android:minSdkVersion -+ INJECTED from /Users/james/GitHub/Wallet/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/AnimatedSensor/AnimatedSensorModule.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/AnimatedSensor/AnimatedSensorModule.h -new file mode 100644 -index 0000000..f813079 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/AnimatedSensor/AnimatedSensorModule.h -@@ -0,0 +1,47 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace worklets; -+ -+enum SensorType { -+ ACCELEROMETER = 1, -+ GYROSCOPE = 2, -+ GRAVITY = 3, -+ MAGNETIC_FIELD = 4, -+ ROTATION_VECTOR = 5, -+}; -+ -+class AnimatedSensorModule { -+ std::unordered_set sensorsIds_; -+ RegisterSensorFunction platformRegisterSensorFunction_; -+ UnregisterSensorFunction platformUnregisterSensorFunction_; -+ -+ public: -+ AnimatedSensorModule( -+ const PlatformDepMethodsHolder &platformDepMethodsHolder); -+ ~AnimatedSensorModule(); -+ -+ jsi::Value registerSensor( -+ jsi::Runtime &rt, -+ const std::shared_ptr &uiWorkletRuntime, -+ const jsi::Value &sensorType, -+ const jsi::Value &interval, -+ const jsi::Value &iosReferenceFrame, -+ const jsi::Value &sensorDataContainer); -+ void unregisterSensor(const jsi::Value &sensorId); -+ void unregisterAllSensors(); -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/InterpolatorRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/InterpolatorRegistry.h -new file mode 100644 -index 0000000..5d841ba ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/InterpolatorRegistry.h -@@ -0,0 +1,20 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+using ComponentInterpolatorsMap = -+ std::unordered_map; -+ -+const InterpolatorFactoriesRecord &getComponentInterpolators( -+ const std::string &componentName); -+ -+void registerComponentInterpolators( -+ const std::string &componentName, -+ const InterpolatorFactoriesRecord &interpolators); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/definitions.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/definitions.h -new file mode 100644 -index 0000000..d043127 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/definitions.h -@@ -0,0 +1,23 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+ -+using PropertyNames = std::vector; -+using PropertyPath = std::vector; -+/** -+ * If nullopt - all style properties can trigger transition -+ * If empty vector - no style property can trigger transition -+ * Otherwise - only specified style properties can trigger transition -+ */ -+using TransitionProperties = std::optional; -+ -+using EasingFunction = std::function; -+using ColorChannels = std::array; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/Quaternion.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/Quaternion.h -new file mode 100644 -index 0000000..67336b8 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/Quaternion.h -@@ -0,0 +1,23 @@ -+#pragma once -+ -+#ifndef NDEBUG -+#include -+#endif // NDEBUG -+ -+namespace reanimated::css { -+ -+struct Quaternion { -+ double x, y, z, w; -+ -+ bool operator==(const Quaternion &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const Quaternion &quaternion); -+#endif // NDEBUG -+ -+ Quaternion interpolate(double progress, const Quaternion &other) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix.h -new file mode 100644 -index 0000000..805bc8a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix.h -@@ -0,0 +1,147 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class TransformMatrix { -+ public: -+ virtual ~TransformMatrix() = default; -+ -+ virtual double determinant() const = 0; -+ -+ virtual double &operator[](size_t index) = 0; -+ virtual const double &operator[](size_t index) const = 0; -+ -+ virtual size_t getDimension() const = 0; -+ -+ virtual std::string toString() const = 0; -+ virtual folly::dynamic toDynamic() const = 0; -+}; -+ -+template -+class TransformMatrixBase : public TransformMatrix { -+ public: -+ static constexpr size_t SIZE = TDimension * TDimension; -+ using MatrixArray = std::array; -+ -+ explicit TransformMatrixBase(MatrixArray matrix) -+ : matrix_(std::move(matrix)) {} -+ -+ explicit TransformMatrixBase(jsi::Runtime &rt, const jsi::Value &value) { -+ const auto array = value.asObject(rt).asArray(rt); -+ if (array.size(rt) != SIZE) { -+ throw std::invalid_argument( -+ "[Reanimated] Matrix array should have " + std::to_string(SIZE) + -+ " elements"); -+ } -+ -+ for (size_t i = 0; i < SIZE; ++i) { -+ matrix_[i] = array.getValueAtIndex(rt, i).asNumber(); -+ } -+ } -+ -+ explicit TransformMatrixBase(const folly::dynamic &array) { -+ if (!array.isArray() || array.size() != SIZE) { -+ throw std::invalid_argument( -+ "[Reanimated] Matrix array should have " + std::to_string(SIZE) + -+ " elements"); -+ } -+ -+ for (size_t i = 0; i < SIZE; ++i) { -+ matrix_[i] = array[i].asDouble(); -+ } -+ } -+ -+ virtual bool operator==(const TDerived &other) const = 0; -+ -+ double &operator[](size_t index) override { -+ return matrix_[index]; -+ } -+ -+ const double &operator[](size_t index) const override { -+ return matrix_[index]; -+ } -+ -+ TDerived operator*(const TDerived &rhs) const { -+ return TDerived(multiply(rhs)); -+ } -+ -+ TDerived &operator*=(const TDerived &rhs) { -+ matrix_ = multiply(rhs); -+ return static_cast(*this); -+ } -+ -+ std::string toString() const override { -+ std::string result = "["; -+ for (size_t i = 0; i < SIZE; ++i) { -+ result += std::to_string(matrix_[i]); -+ if (i < SIZE - 1) { -+ result += ", "; -+ } -+ } -+ result += "]"; -+ return result; -+ } -+ -+ folly::dynamic toDynamic() const override { -+ folly::dynamic result = folly::dynamic::array; -+ for (size_t i = 0; i < SIZE; ++i) { -+ result.push_back(matrix_[i]); -+ } -+ return result; -+ } -+ -+ size_t getDimension() const override { -+ return TDimension; -+ } -+ -+ bool isSingular() const { -+ return determinant() == 0; -+ } -+ -+ bool normalize() { -+ const auto last = matrix_[SIZE - 1]; -+ if (last == 0) { -+ return false; -+ } -+ if (last == 1) { -+ return true; -+ } -+ -+ for (size_t i = 0; i < SIZE; ++i) { -+ matrix_[i] /= last; -+ } -+ return true; -+ } -+ -+ void transpose() { -+ for (size_t i = 0; i < TDimension; ++i) { -+ for (size_t j = i + 1; j < TDimension; ++j) { -+ std::swap(matrix_[i * TDimension + j], matrix_[j * TDimension + i]); -+ } -+ } -+ } -+ -+ protected: -+ std::array matrix_; -+ -+ MatrixArray multiply(const TDerived &rhs) const { -+ std::array result{}; -+ for (size_t i = 0; i < TDimension; ++i) { -+ for (size_t j = 0; j < TDimension; ++j) { -+ for (size_t k = 0; k < TDimension; ++k) { -+ result[i * TDimension + j] += -+ matrix_[i * TDimension + k] * rhs[k * TDimension + j]; -+ } -+ } -+ } -+ return result; -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix2D.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix2D.h -new file mode 100644 -index 0000000..1dd9a66 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix2D.h -@@ -0,0 +1,58 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+namespace { -+static constexpr size_t MATRIX_2D_DIMENSION = 3; // 3x3 matrix -+} -+ -+class TransformMatrix2D -+ : public TransformMatrixBase { -+ public: -+ struct Decomposed { -+ Vector2D scale; -+ double skew; -+ double rotation; -+ Vector2D translation; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const Decomposed &decomposed); -+#endif // NDEBUG -+ -+ Decomposed interpolate(double progress, const Decomposed &other) const; -+ }; -+ -+ using TransformMatrixBase:: -+ TransformMatrixBase; -+ -+ static TransformMatrix2D Identity(); -+ -+ template -+ static TransformMatrix2D create(double value); -+ -+ bool operator==(const TransformMatrix2D &other) const override; -+ -+ double determinant() const override; -+ void translate2d(const Vector2D &translation); -+ void scale2d(const Vector2D &scale); -+ -+ std::optional decompose() const; -+ static TransformMatrix2D recompose(const Decomposed &decomposed); -+ -+ private: -+ Vector2D getTranslation() const; -+ static std::pair computeScaleAndSkew( -+ std::array &rows); -+ static double computeRotation(std::array &rows); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix3D.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix3D.h -new file mode 100644 -index 0000000..cd5d796 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformMatrix3D.h -@@ -0,0 +1,84 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+namespace { -+static constexpr size_t MATRIX_3D_DIMENSION = 4; // 4x4 matrix -+} -+ -+class TransformMatrix3D -+ : public TransformMatrixBase { -+ public: -+ struct Decomposed { -+ Vector3D scale; -+ Vector3D skew; -+ Quaternion quaternion; -+ Vector3D translation; -+ Vector4D perspective; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const Decomposed &decomposed); -+#endif // NDEBUG -+ -+ Decomposed interpolate(double progress, const Decomposed &other) const; -+ }; -+ -+ using TransformMatrixBase:: -+ TransformMatrixBase; -+ -+ static TransformMatrix3D Identity(); -+ -+ template -+ static TransformMatrix3D create(double value); -+ -+ bool operator==(const TransformMatrix3D &other) const override; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const TransformMatrix3D &matrix); -+#endif // NDEBUG -+ -+ double determinant() const override; -+ void adjugate(); -+ bool invert(); -+ void translate3d(const Vector3D &translation); -+ void scale3d(const Vector3D &scale); -+ -+ std::optional decompose() const; -+ static TransformMatrix3D recompose(const Decomposed &decomposed); -+ static TransformMatrix3D fromQuaternion(const Quaternion &q); -+ -+ private: -+ std::optional computePerspective() const; -+ -+ Vector3D getTranslation() const; -+ static std::pair computeScaleAndSkew( -+ std::array &rows); -+ static Quaternion computeQuaternion(std::array &columns); -+ -+ inline static double determinant3x3( -+ double a, -+ double b, -+ double c, -+ double d, -+ double e, -+ double f, -+ double g, -+ double h, -+ double i); -+}; -+ -+Vector4D operator*(const Vector4D &v, const TransformMatrix3D &m); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformOp.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformOp.h -new file mode 100644 -index 0000000..846b32e ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/TransformOp.h -@@ -0,0 +1,27 @@ -+#pragma once -+ -+#include -+ -+namespace reanimated::css { -+ -+enum class TransformOp { -+ Perspective, -+ Rotate, -+ RotateX, -+ RotateY, -+ RotateZ, -+ Scale, -+ ScaleX, -+ ScaleY, -+ TranslateX, -+ TranslateY, -+ SkewX, -+ SkewY, -+ Matrix, -+}; -+ -+TransformOp getTransformOperationType(const std::string &property); -+ -+std::string getOperationNameFromType(const TransformOp type); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/vectors.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/vectors.h -new file mode 100644 -index 0000000..5d6a788 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/transforms/vectors.h -@@ -0,0 +1,77 @@ -+#pragma once -+ -+#include -+ -+#ifndef NDEBUG -+#include -+#endif // NDEBUG -+ -+namespace reanimated::css { -+ -+struct Vector2D { -+ std::array vec; -+ -+ Vector2D() : vec({0, 0}) {} -+ explicit Vector2D(double x, double y) : vec({x, y}) {} -+ explicit Vector2D(std::array vec) : vec(vec) {} -+ -+ double &operator[](size_t idx); -+ const double &operator[](size_t idx) const; -+ Vector2D &operator*=(double scalar); -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const Vector2D &vector); -+#endif // NDEBUG -+ -+ double length() const; -+ void scaleToLength(double targetLength); -+ void normalize(); -+ double dot(const Vector2D &other) const; -+ double cross(const Vector2D &other) const; -+ Vector2D addScaled(const Vector2D &other, double scale) const; -+ Vector2D interpolate(double progress, const Vector2D &other) const; -+}; -+ -+struct Vector3D { -+ std::array vec; -+ -+ Vector3D() : vec({0, 0, 0}) {} -+ explicit Vector3D(double x, double y, double z) : vec({x, y, z}) {} -+ explicit Vector3D(std::array vec) : vec(vec) {} -+ -+ double &operator[](size_t idx); -+ const double &operator[](size_t idx) const; -+ Vector3D &operator*=(double scalar); -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const Vector3D &vector); -+#endif // NDEBUG -+ -+ double length() const; -+ void scaleToLength(double targetLength); -+ void normalize(); -+ double dot(const Vector3D &other) const; -+ Vector3D cross(const Vector3D &other) const; -+ Vector3D addScaled(const Vector3D &other, double scale) const; -+ Vector3D interpolate(double progress, const Vector3D &other) const; -+}; -+ -+struct Vector4D { -+ std::array vec; -+ -+ Vector4D() : vec({0, 0, 0, 0}) {} -+ explicit Vector4D(double x, double y, double z, double w) -+ : vec({x, y, z, w}) {} -+ explicit Vector4D(std::array vec) : vec(vec) {} -+ -+ double &operator[](size_t idx); -+ const double &operator[](size_t idx) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const Vector4D &vector); -+#endif // NDEBUG -+ -+ Vector4D interpolate(double progress, const Vector4D &other) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSAngle.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSAngle.h -new file mode 100644 -index 0000000..5501c65 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSAngle.h -@@ -0,0 +1,38 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+struct CSSAngle : public CSSSimpleValue { -+ double value; -+ -+ CSSAngle(); -+ explicit CSSAngle(double value); -+ explicit CSSAngle(const std::string &rotationString); -+ explicit CSSAngle(const char *cstr); -+ explicit CSSAngle(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSAngle(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ CSSAngle interpolate(double progress, const CSSAngle &to) const override; -+ -+ bool operator==(const CSSAngle &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const CSSAngle &angleValue); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSBoolean.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSBoolean.h -new file mode 100644 -index 0000000..ea6a08b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSBoolean.h -@@ -0,0 +1,33 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+struct CSSBoolean : public CSSSimpleValue { -+ bool value; -+ -+ CSSBoolean(); -+ explicit CSSBoolean(bool value); -+ explicit CSSBoolean(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSBoolean(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ CSSBoolean interpolate(double progress, const CSSBoolean &to) const override; -+ -+ bool operator==(const CSSBoolean &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const CSSBoolean &boolValue); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSColor.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSColor.h -new file mode 100644 -index 0000000..b7c679f ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSColor.h -@@ -0,0 +1,60 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+enum class ColorType { -+ Rgba, -+ Transparent, -+ CurrentColor, // for SVG -+}; -+ -+struct CSSColor : public CSSSimpleValue { -+ ColorChannels channels; -+ ColorType colorType; -+ -+ static const CSSColor Transparent; -+ -+ CSSColor(); -+ explicit CSSColor(ColorType colorType); -+ explicit CSSColor(int64_t numberValue); -+ explicit CSSColor(const std::string &colorString); -+ -+ explicit CSSColor(uint8_t r, uint8_t g, uint8_t b); -+ explicit CSSColor(uint8_t r, uint8_t g, uint8_t b, uint8_t a); -+ explicit CSSColor(const ColorChannels &colorChannels); -+ -+ explicit CSSColor(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSColor(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ CSSColor interpolate(double progress, const CSSColor &to) const override; -+ -+ static uint8_t interpolateChannel(uint8_t from, uint8_t to, double progress); -+ -+ bool operator==(const CSSColor &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const CSSColor &colorValue); -+#endif // NDEBUG -+ -+ private: -+ static bool isValidColorString(const std::string &colorString); -+}; -+ -+inline const CSSColor CSSColor::Transparent(ColorType::Transparent); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSDiscreteArray.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSDiscreteArray.h -new file mode 100644 -index 0000000..e5e1fc9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSDiscreteArray.h -@@ -0,0 +1,49 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+/* -+ * CSSDiscreteArray is used for array interpolation when arrays need to be -+ * treated as discrete values. Instead of interpolating between corresponding -+ * elements of two arrays, this type interpolates between entire arrays -+ * treated as single discrete values. -+ */ -+template -+struct CSSDiscreteArray : public CSSSimpleValue> { -+ static constexpr bool is_discrete_value = true; -+ -+ std::vector values; -+ -+ CSSDiscreteArray(); -+ explicit CSSDiscreteArray(const std::vector &values); -+ explicit CSSDiscreteArray(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSDiscreteArray(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ CSSDiscreteArray interpolate( -+ double progress, -+ const CSSDiscreteArray &other) const override; -+ -+ bool operator==(const CSSDiscreteArray &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const CSSDiscreteArray &arrayValue); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSKeyword.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSKeyword.h -new file mode 100644 -index 0000000..7e43a0c ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSKeyword.h -@@ -0,0 +1,61 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+template -+class CSSKeywordBase : public CSSSimpleValue { -+ public: -+ static constexpr bool is_discrete_value = true; -+ -+ CSSKeywordBase() = default; -+ explicit CSSKeywordBase(const char *value); -+ explicit CSSKeywordBase(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSKeywordBase(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ -+ bool operator==(const CSSKeywordBase &other) const; -+ -+ protected: -+ std::string value; -+}; -+ -+struct CSSKeyword : public CSSKeywordBase { -+ using CSSKeywordBase::CSSKeywordBase; -+ using CSSKeywordBase::canConstruct; -+ -+ CSSKeyword interpolate(double progress, const CSSKeyword &to) const override; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const CSSKeyword &keywordValue); -+#endif // NDEBUG -+}; -+ -+struct CSSDisplay : public CSSKeywordBase { -+ using CSSKeywordBase::CSSKeywordBase; -+ using CSSKeywordBase::canConstruct; -+ -+ CSSDisplay interpolate(double progress, const CSSDisplay &to) const override; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const CSSDisplay &displayValue); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSLength.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSLength.h -new file mode 100644 -index 0000000..aa26fc8 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSLength.h -@@ -0,0 +1,41 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+struct CSSLength : public CSSResolvableValue { -+ double value; -+ bool isRelative; -+ -+ CSSLength(); -+ explicit CSSLength(double value); -+ explicit CSSLength(double value, bool isRelative); -+ explicit CSSLength(const char *value); -+ explicit CSSLength(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSLength(const folly::dynamic &value); -+ -+ static bool canConstruct(const std::string &value); -+ static bool canConstruct(const char *value); -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ CSSLength interpolate( -+ double progress, -+ const CSSLength &to, -+ const CSSResolvableValueInterpolationContext &context) const override; -+ std::optional resolve( -+ const CSSResolvableValueInterpolationContext &context) const override; -+ -+ bool operator==(const CSSLength &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const CSSLength &dimension); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSNumber.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSNumber.h -new file mode 100644 -index 0000000..902d421 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSNumber.h -@@ -0,0 +1,71 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+template -+struct CSSNumberBase : public CSSSimpleValue { -+ TValue value; -+ -+ CSSNumberBase(); -+ explicit CSSNumberBase(TValue value); -+ explicit CSSNumberBase(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSNumberBase(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ TDerived interpolate(double progress, const TDerived &other) const override; -+ -+ bool operator==(const CSSNumberBase &other) const; -+}; -+ -+#ifndef NDEBUG -+ -+template -+std::ostream &operator<<( -+ std::ostream &os, -+ const CSSNumberBase &numberValue) { -+ os << "CSSNumberBase(" << numberValue.toString() << ")"; -+ return os; -+} -+ -+#endif // NDEBUG -+ -+struct CSSDouble : public CSSNumberBase { -+ // Inherit all constructors from the base class -+ using CSSNumberBase::CSSNumberBase; -+}; -+struct CSSInteger : public CSSNumberBase { -+ // Inherit all constructors from the base class -+ using CSSNumberBase::CSSNumberBase; -+ -+ CSSInteger interpolate(double progress, const CSSInteger &other) -+ const override; -+}; -+ -+#ifdef ANDROID -+ -+// For some reason Android crashes when blurRadius is smaller than 1 so we use a -+// custom value that will never be smaller than 1 -+ -+struct CSSShadowRadiusAndroid -+ : public CSSNumberBase { -+ CSSShadowRadiusAndroid(); -+ explicit CSSShadowRadiusAndroid(double value); -+ explicit CSSShadowRadiusAndroid(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit CSSShadowRadiusAndroid(const folly::dynamic &value); -+}; -+ -+#endif -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValue.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValue.h -new file mode 100644 -index 0000000..923997f ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValue.h -@@ -0,0 +1,79 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+ -+struct ValueInterpolatorUpdateContext { -+ const std::shared_ptr &node; -+}; -+ -+enum class RelativeTo { -+ Parent, -+ Self, -+}; -+ -+struct CSSResolvableValueInterpolationContext { -+ const std::shared_ptr &node; -+ const std::shared_ptr &viewStylesRepository; -+ const std::string &relativeProperty; -+ const RelativeTo relativeTo; -+}; -+ -+struct CSSValue { -+ // This field should be overridden in discrete value types -+ static constexpr bool is_discrete_value = false; -+ -+ virtual ~CSSValue() = default; -+ -+ virtual folly::dynamic toDynamic() const = 0; -+ virtual std::string toString() const = 0; -+}; -+ -+// Base for leaf values that can be interpolated without resolution -+template -+struct CSSSimpleValue : public CSSValue { -+ static constexpr bool is_resolvable_value = false; -+ -+ virtual TDerived interpolate(double progress, const TDerived &to) const = 0; -+}; -+ -+// Base for leaf values that need resolution before interpolation -+template -+struct CSSResolvableValue : public CSSValue { -+ static constexpr bool is_resolvable_value = true; -+ -+ virtual TDerived interpolate( -+ double progress, -+ const TDerived &to, -+ const CSSResolvableValueInterpolationContext &context) const = 0; -+ virtual std::optional resolve( -+ const CSSResolvableValueInterpolationContext &context) const = 0; -+}; -+ -+// Checks if a type is a resolvable value that needs resolution before -+// interpolation -+template -+concept Resolvable = requires { -+ { TCSSValue::is_resolvable_value } -> std::convertible_to; -+ requires TCSSValue::is_resolvable_value == true; -+}; -+ -+// Checks if a type is a discrete value -+template -+concept Discrete = requires { -+ { TCSSValue::is_discrete_value } -> std::convertible_to; -+ requires TCSSValue::is_discrete_value == true; -+}; -+ -+// Check if a type is derived from CSSValue -+template -+concept CSSValueDerived = std::is_base_of_v; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValueVariant.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValueVariant.h -new file mode 100644 -index 0000000..602d6c5 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/common/values/CSSValueVariant.h -@@ -0,0 +1,123 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace worklets; -+ -+/** -+ * Macro to check if two lambda parameters have the same reference-removed type. -+ * -+ * Usage: -+ * REA_IF_SAME_TYPE(lhs, rhs) { -+ * // same-type block -+ * } else { -+ * // mismatch block -+ * } -+ */ -+#define REA_IF_SAME_TYPE(lhs, rhs) \ -+ using L = std::remove_reference_t; \ -+ using R = std::remove_reference_t; \ -+ if constexpr (std::is_same_v) // NOLINT(readability/braces) -+ -+// Checks whether a type has canConstruct(...) for a generic value -+template -+concept ValueConstructibleCSSValue = requires(TValue &&value) { -+ { -+ TCSSValue::canConstruct(std::forward(value)) -+ } -> std::same_as; -+}; // NOLINT(readability/braces) -+ -+// Checks whether a type can be constructed from a jsi::Value -+template -+concept JSIConstructibleCSSValue = -+ requires(jsi::Runtime &rt, const jsi::Value &value) { -+ { TCSSValue::canConstruct(rt, value) } -> std::same_as; -+ { TCSSValue(rt, value) } -> std::same_as; -+ }; // NOLINT(readability/braces) -+ -+// Checks whether a type can be constructed from a folly::dynamic -+template -+concept DynamicConstructibleCSSValue = requires(const folly::dynamic &value) { -+ { TCSSValue::canConstruct(value) } -> std::same_as; -+ { TCSSValue(value) } -> std::same_as; -+}; // NOLINT(readability/braces) -+ -+/** -+ * CSSValueVariant -+ * -+ * A std::variant-based container for multiple CSSValue-derived types. -+ */ -+template -+class CSSValueVariant final : public CSSValue { -+ static_assert( -+ (CSSValueDerived && ...), -+ "CSSValueVariant accepts only CSSValue-derived types"); -+ static_assert( -+ (JSIConstructibleCSSValue && ...), -+ "CSSValueVariant accepts only types that can be constructed from a jsi::Value"); -+ static_assert( -+ (DynamicConstructibleCSSValue && ...), -+ "CSSValueVariant accepts only types that can be constructed from a folly::dynamic"); -+ -+ public: -+ CSSValueVariant() = default; -+ -+ /** -+ * Construct from std::variant storage directly -+ */ -+ explicit CSSValueVariant(std::variant &&storage); -+ -+ /** -+ * Construct from jsi::Value if it matches any AllowedType's constructor -+ * (chooses the first one that matches) -+ */ -+ explicit CSSValueVariant(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ -+ /** -+ * Construct from folly::dynamic if it matches any AllowedType's constructor -+ * (chooses the first one that matches) -+ */ -+ explicit CSSValueVariant(const folly::dynamic &value); -+ -+ bool operator==(const CSSValueVariant &other) const; -+ bool operator==(const CSSValue &other) const; -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ -+ /** -+ * Interpolate (non-resolvable) -+ */ -+ CSSValueVariant interpolate( -+ const double progress, -+ const CSSValueVariant &to, -+ const ValueInterpolatorUpdateContext &context) const; -+ -+ /** -+ * Interpolate (resolvable) -+ */ -+ CSSValueVariant interpolate( -+ const double progress, -+ const CSSValueVariant &to, -+ const CSSResolvableValueInterpolationContext &context) const; -+ -+ private: -+ std::variant storage_; -+ -+ CSSValueVariant fallbackInterpolate( -+ const double progress, -+ const CSSValueVariant &to) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSAnimationConfig.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSAnimationConfig.h -new file mode 100644 -index 0000000..1defb7b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSAnimationConfig.h -@@ -0,0 +1,53 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+enum class AnimationDirection { Normal, Reverse, Alternate, AlternateReverse }; -+enum class AnimationFillMode { None, Forwards, Backwards, Both }; -+enum class AnimationPlayState { Running, Paused }; -+ -+struct CSSAnimationSettings { -+ double duration; -+ EasingFunction easingFunction; -+ double delay; -+ double iterationCount; -+ AnimationDirection direction; -+ AnimationFillMode fillMode; -+ AnimationPlayState playState; -+}; -+ -+struct PartialCSSAnimationSettings { -+ std::optional duration; -+ std::optional easingFunction; -+ std::optional delay; -+ std::optional iterationCount; -+ std::optional direction; -+ std::optional fillMode; -+ std::optional playState; -+}; -+ -+using CSSAnimationSettingsMap = -+ std::unordered_map; -+using CSSAnimationSettingsUpdatesMap = -+ std::unordered_map; -+ -+struct CSSAnimationUpdates { -+ std::optional> animationNames; -+ CSSAnimationSettingsMap newAnimationSettings; -+ CSSAnimationSettingsUpdatesMap settingsUpdates; -+}; -+ -+CSSAnimationUpdates parseCSSAnimationUpdates( -+ jsi::Runtime &rt, -+ const jsi::Value &config); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSKeyframesConfig.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSKeyframesConfig.h -new file mode 100644 -index 0000000..3ba8880 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSKeyframesConfig.h -@@ -0,0 +1,26 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using KeyframeEasingFunctions = std::unordered_map; -+ -+struct CSSKeyframesConfig { -+ std::shared_ptr styleInterpolator; -+ std::shared_ptr keyframeEasingFunctions; -+}; -+ -+CSSKeyframesConfig parseCSSAnimationKeyframesConfig( -+ jsi::Runtime &rt, -+ const jsi::Value &config, -+ const std::string &componentName, -+ const std::shared_ptr &viewStylesRepository); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSTransitionConfig.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSTransitionConfig.h -new file mode 100644 -index 0000000..1ca2106 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/CSSTransitionConfig.h -@@ -0,0 +1,50 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+struct CSSTransitionPropertySettings { -+ double duration; -+ EasingFunction easingFunction; -+ double delay; -+ bool allowDiscrete; -+}; -+ -+using CSSTransitionPropertiesSettings = -+ std::unordered_map; -+ -+struct CSSTransitionConfig { -+ TransitionProperties properties; -+ CSSTransitionPropertiesSettings settings; -+}; -+ -+struct PartialCSSTransitionConfig { -+ std::optional properties; -+ std::optional settings; -+}; -+ -+std::optional getTransitionPropertySettings( -+ const CSSTransitionPropertiesSettings &propertiesSettings, -+ const std::string &propName); -+ -+TransitionProperties getProperties(jsi::Runtime &rt, const jsi::Object &config); -+ -+CSSTransitionPropertiesSettings parseCSSTransitionPropertiesSettings( -+ jsi::Runtime &rt, -+ const jsi::Object &settings); -+ -+CSSTransitionConfig parseCSSTransitionConfig( -+ jsi::Runtime &rt, -+ const jsi::Value &config); -+ -+PartialCSSTransitionConfig parsePartialCSSTransitionConfig( -+ jsi::Runtime &rt, -+ const jsi::Value &partialConfig); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/common.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/common.h -new file mode 100644 -index 0000000..4d053e6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/configs/common.h -@@ -0,0 +1,13 @@ -+#pragma once -+ -+#include -+ -+namespace reanimated::css { -+ -+double getDuration(jsi::Runtime &rt, const jsi::Object &config); -+ -+EasingFunction getTimingFunction(jsi::Runtime &rt, const jsi::Object &config); -+ -+double getDelay(jsi::Runtime &rt, const jsi::Object &config); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSAnimation.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSAnimation.h -new file mode 100644 -index 0000000..3ac4004 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSAnimation.h -@@ -0,0 +1,51 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+class CSSAnimation { -+ public: -+ CSSAnimation( -+ jsi::Runtime &rt, -+ std::shared_ptr shadowNode, -+ std::string animationName, -+ const CSSKeyframesConfig &cssKeyframesConfig, -+ const CSSAnimationSettings &settings, -+ double timestamp); -+ -+ const std::string &getName() const; -+ std::shared_ptr getShadowNode() const; -+ -+ double getStartTimestamp(double timestamp) const; -+ AnimationProgressState getState(double timestamp) const; -+ bool isReversed() const; -+ -+ bool hasForwardsFillMode() const; -+ bool hasBackwardsFillMode() const; -+ -+ folly::dynamic getCurrentInterpolationStyle() const; -+ folly::dynamic getBackwardsFillStyle() const; -+ folly::dynamic getResetStyle() const; -+ -+ void run(double timestamp); -+ folly::dynamic update(double timestamp); -+ void updateSettings( -+ const PartialCSSAnimationSettings &updatedSettings, -+ double timestamp); -+ -+ private: -+ const std::string name_; -+ const std::shared_ptr shadowNode_; -+ AnimationFillMode fillMode_; -+ -+ const std::shared_ptr styleInterpolator_; -+ const std::shared_ptr progressProvider_; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSTransition.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSTransition.h -new file mode 100644 -index 0000000..1afdcbc ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/core/CSSTransition.h -@@ -0,0 +1,50 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class CSSTransition { -+ public: -+ CSSTransition( -+ std::shared_ptr shadowNode, -+ const CSSTransitionConfig &config, -+ const std::shared_ptr &viewStylesRepository); -+ -+ Tag getViewTag() const; -+ std::shared_ptr getShadowNode() const; -+ double getMinDelay(double timestamp) const; -+ TransitionProgressState getState() const; -+ folly::dynamic getCurrentInterpolationStyle() const; -+ TransitionProperties getProperties() const; -+ PropertyNames getAllowedProperties( -+ const folly::dynamic &oldProps, -+ const folly::dynamic &newProps); -+ -+ void updateSettings(const PartialCSSTransitionConfig &config); -+ folly::dynamic run( -+ const ChangedProps &changedProps, -+ const folly::dynamic &lastUpdateValue, -+ double timestamp); -+ folly::dynamic update(double timestamp); -+ -+ private: -+ const std::shared_ptr shadowNode_; -+ const std::shared_ptr viewStylesRepository_; -+ TransitionProperties properties_; -+ CSSTransitionPropertiesSettings settings_; -+ TransitionStyleInterpolator styleInterpolator_; -+ TransitionProgressProvider progressProvider_; -+ -+ void updateTransitionProperties(const TransitionProperties &properties); -+ bool isAllowedProperty(const std::string &propertyName) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/EasingFunctions.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/EasingFunctions.h -new file mode 100644 -index 0000000..452a96b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/EasingFunctions.h -@@ -0,0 +1,27 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+ -+extern const std::unordered_map -+ PREDEFINED_EASING_MAP; -+ -+EasingFunction getPredefinedEasingFunction(const std::string &name); -+EasingFunction createParametrizedEasingFunction( -+ jsi::Runtime &rt, -+ const jsi::Object &easingConfig); -+ -+EasingFunction createEasingFunction( -+ jsi::Runtime &rt, -+ const jsi::Value &easingConfig); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/cubicBezier.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/cubicBezier.h -new file mode 100644 -index 0000000..fca77fc ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/cubicBezier.h -@@ -0,0 +1,15 @@ -+#pragma once -+ -+#include -+ -+namespace reanimated::css { -+ -+double sampleCurveX(double t, double x1, double x2); -+double sampleCurveY(double t, double y1, double y2); -+double sampleCurveDerivativeX(double t, double x1, double x2); -+double solveCurveX(double x, double x1, double x2, double epsilon = 1e-6); -+ -+EasingFunction cubicBezier(double x1, double y1, double x2, double y2); -+EasingFunction cubicBezier(jsi::Runtime &rt, const jsi::Object &easingConfig); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/linear.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/linear.h -new file mode 100644 -index 0000000..a434118 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/linear.h -@@ -0,0 +1,20 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+double interpolateValue( -+ double x, -+ std::size_t leftIdx, -+ const std::vector &arrX, -+ const std::vector &arrY); -+ -+EasingFunction linear( -+ const std::vector &pointsX, -+ const std::vector &pointsY); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/steps.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/steps.h -new file mode 100644 -index 0000000..720c51b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/easing/steps.h -@@ -0,0 +1,14 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+EasingFunction steps( -+ const std::vector &pointsX, -+ const std::vector &pointsY); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/InterpolatorFactory.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/InterpolatorFactory.h -new file mode 100644 -index 0000000..ab61b15 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/InterpolatorFactory.h -@@ -0,0 +1,194 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+// Template class implementations -+template -+class SimpleValueInterpolatorFactory : public PropertyInterpolatorFactory { -+ public: -+ template -+ explicit SimpleValueInterpolatorFactory(const TValue &defaultValue) -+ : PropertyInterpolatorFactory(), defaultValue_(defaultValue) {} -+ -+ bool isDiscreteProperty() const override { -+ // The property is considered discrete if all of the allowed types are -+ // discrete -+ return (Discrete && ...); -+ } -+ -+ const CSSValue &getDefaultValue() const override { -+ return defaultValue_; -+ } -+ -+ std::shared_ptr create( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository) -+ const override { -+ return std::make_shared>( -+ propertyPath, defaultValue_, viewStylesRepository); -+ } -+ -+ private: -+ const CSSValueVariant defaultValue_; -+}; -+ -+template -+class ResolvableValueInterpolatorFactory : public PropertyInterpolatorFactory { -+ public: -+ template -+ explicit ResolvableValueInterpolatorFactory( -+ RelativeTo relativeTo, -+ const std::string &relativeProperty, -+ const TValue &defaultValue) -+ : PropertyInterpolatorFactory(), -+ relativeTo_(relativeTo), -+ relativeProperty_(relativeProperty), -+ defaultValue_(defaultValue) {} -+ -+ const CSSValue &getDefaultValue() const override { -+ return defaultValue_; -+ } -+ -+ std::shared_ptr create( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository) -+ const override { -+ return std::make_shared>( -+ propertyPath, -+ defaultValue_, -+ viewStylesRepository, -+ relativeTo_, -+ relativeProperty_); -+ } -+ -+ private: -+ const RelativeTo relativeTo_; -+ const std::string relativeProperty_; -+ const CSSValueVariant defaultValue_; -+}; -+ -+/** -+ * Helper function to create a concrete CSSValue from defaultValue -+ */ -+template -+CSSValueVariant createCSSValue(const auto &defaultValue) { -+ using ValueType = decltype(defaultValue); -+ CSSValueVariant result; -+ -+ auto tryOne = [&]() -> bool { -+ if constexpr (std::is_constructible_v) { -+ if constexpr (ValueConstructibleCSSValue) { -+ // For construction from a non-jsi::Value, we perform a runtime -+ // canConstruct check only if the type has a canConstruct method. -+ // (this is needed e.g. when different CSS value types can be -+ // constructed from the same value type, like CSSLength and CSSKeyword) -+ if (!TCSSValue::canConstruct(defaultValue)) { -+ return false; -+ } -+ } -+ result = CSSValueVariant( -+ std::variant(TCSSValue(defaultValue))); -+ return true; -+ } -+ return false; -+ }; -+ -+ // Try constructing with each allowed type until one succeeds -+ if (!(tryOne.template operator()() || ...)) { -+ throw std::runtime_error( -+ "[Reanimated] No compatible type found for construction from defaultValue"); -+ } -+ -+ return result; -+} -+ -+/** -+ * Value interpolator factories -+ */ -+template -+auto value(const auto &defaultValue) -> std::enable_if_t< -+ (std::is_constructible_v || ...), -+ std::shared_ptr> { -+ // Create a concrete CSSValue from the defaultValue -+ auto cssValue = createCSSValue(defaultValue); -+ return std::make_shared>( -+ std::move(cssValue)); -+} -+ -+template -+auto value( -+ RelativeTo relativeTo, -+ const std::string &relativeProperty, -+ const auto &defaultValue) -+ -> std::enable_if_t< -+ (std::is_constructible_v || ...), -+ std::shared_ptr> { -+ // Create a concrete CSSValue from the defaultValue -+ auto cssValue = createCSSValue(defaultValue); -+ return std::make_shared>( -+ relativeTo, relativeProperty, std::move(cssValue)); -+} -+ -+/** -+ * Transform operation interpolator factories -+ */ -+template -+auto transformOp(const auto &defaultValue) -> std::enable_if_t< -+ std::is_base_of_v && -+ std::is_constructible_v, -+ std::shared_ptr> { -+ return std::make_shared>( -+ std::make_shared(defaultValue)); -+} -+ -+template -+auto transformOp( -+ RelativeTo relativeTo, -+ const std::string &relativeProperty, -+ const auto &defaultValue) -+ -> std::enable_if_t< -+ std::is_base_of_v && -+ std::is_constructible_v && -+ ResolvableOperation, -+ std::shared_ptr> { -+ return std::make_shared>( -+ std::make_shared(defaultValue), relativeTo, relativeProperty); -+} -+ -+/** -+ * Record property interpolator factory -+ */ -+std::shared_ptr record( -+ const InterpolatorFactoriesRecord &factories); -+ -+/** -+ * Array property interpolator factory -+ */ -+std::shared_ptr array( -+ const InterpolatorFactoriesArray &factories); -+ -+/** -+ * Transform interpolators -+ */ -+std::shared_ptr transforms( -+ const std::unordered_map< -+ std::string, -+ std::shared_ptr> &interpolators); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/PropertyInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/PropertyInterpolator.h -new file mode 100644 -index 0000000..3d4b8be ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/PropertyInterpolator.h -@@ -0,0 +1,72 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class PropertyInterpolator { -+ public: -+ explicit PropertyInterpolator( -+ PropertyPath propertyPath, -+ const std::shared_ptr &viewStylesRepository); -+ -+ virtual folly::dynamic getStyleValue( -+ const std::shared_ptr &shadowNode) const = 0; -+ virtual folly::dynamic getResetStyle( -+ const std::shared_ptr &shadowNode) const = 0; -+ virtual folly::dynamic getFirstKeyframeValue() const = 0; -+ virtual folly::dynamic getLastKeyframeValue() const = 0; -+ virtual bool equalsReversingAdjustedStartValue( -+ const folly::dynamic &propertyValue) const = 0; -+ -+ virtual void updateKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &keyframes) = 0; -+ virtual void updateKeyframesFromStyleChange( -+ const folly::dynamic &oldStyleValue, -+ const folly::dynamic &newStyleValue, -+ const folly::dynamic &lastUpdateValue) = 0; -+ -+ virtual folly::dynamic interpolate( -+ const std::shared_ptr &shadowNode, -+ const std::shared_ptr &progressProvider) -+ const = 0; -+ -+ protected: -+ const PropertyPath propertyPath_; -+ const std::shared_ptr viewStylesRepository_; -+}; -+ -+class PropertyInterpolatorFactory { -+ public: -+ PropertyInterpolatorFactory() = default; -+ virtual ~PropertyInterpolatorFactory() = default; -+ -+ virtual bool isDiscreteProperty() const; -+ virtual const CSSValue &getDefaultValue() const = 0; -+ -+ virtual std::shared_ptr create( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository) -+ const = 0; -+}; -+ -+using PropertyInterpolatorsRecord = -+ std::unordered_map>; -+using InterpolatorFactoriesRecord = std:: -+ unordered_map>; -+ -+using PropertyInterpolatorsArray = -+ std::vector>; -+using InterpolatorFactoriesArray = -+ std::vector>; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h -new file mode 100644 -index 0000000..4ecccf4 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/ArrayPropertiesInterpolator.h -@@ -0,0 +1,39 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+class ArrayPropertiesInterpolator : public GroupPropertiesInterpolator { -+ public: -+ ArrayPropertiesInterpolator( -+ const InterpolatorFactoriesArray &factories, -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository); -+ virtual ~ArrayPropertiesInterpolator() = default; -+ -+ bool equalsReversingAdjustedStartValue( -+ const folly::dynamic &propertyValue) const override; -+ -+ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; -+ void updateKeyframesFromStyleChange( -+ const folly::dynamic &oldStyleValue, -+ const folly::dynamic &newStyleValue, -+ const folly::dynamic &lastUpdateValue) override; -+ -+ protected: -+ folly::dynamic mapInterpolators( -+ const std::function &callback) -+ const override; -+ -+ private: -+ const InterpolatorFactoriesArray &factories_; -+ PropertyInterpolatorsArray interpolators_; -+ -+ void resizeInterpolators(size_t valuesCount); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h -new file mode 100644 -index 0000000..b80657a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/GroupPropertiesInterpolator.h -@@ -0,0 +1,35 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+class GroupPropertiesInterpolator : public PropertyInterpolator { -+ public: -+ GroupPropertiesInterpolator( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository); -+ -+ folly::dynamic getStyleValue( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getResetStyle( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getFirstKeyframeValue() const override; -+ folly::dynamic getLastKeyframeValue() const override; -+ -+ folly::dynamic interpolate( -+ const std::shared_ptr &shadowNode, -+ const std::shared_ptr &progressProvider) -+ const override; -+ -+ protected: -+ virtual folly::dynamic mapInterpolators( -+ const std::function &callback) -+ const = 0; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h -new file mode 100644 -index 0000000..94fdead ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/groups/RecordPropertiesInterpolator.h -@@ -0,0 +1,40 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+class RecordPropertiesInterpolator : public GroupPropertiesInterpolator { -+ public: -+ RecordPropertiesInterpolator( -+ const InterpolatorFactoriesRecord &factories, -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &viewStylesRepository); -+ virtual ~RecordPropertiesInterpolator() = default; -+ -+ bool equalsReversingAdjustedStartValue( -+ const folly::dynamic &propertyValue) const override; -+ -+ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; -+ void updateKeyframesFromStyleChange( -+ const folly::dynamic &oldStyleValue, -+ const folly::dynamic &newStyleValue, -+ const folly::dynamic &lastUpdateValue) override; -+ -+ protected: -+ folly::dynamic mapInterpolators( -+ const std::function &callback) -+ const override; -+ -+ void maybeCreateInterpolator(const std::string &propertyName); -+ -+ private: -+ const InterpolatorFactoriesRecord &factories_; -+ PropertyInterpolatorsRecord interpolators_; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h -new file mode 100644 -index 0000000..6b72e02 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/AnimationStyleInterpolator.h -@@ -0,0 +1,29 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+// We can just re-use the logic from the RecordPropertiesInterpolator class as -+// interpolating multiple properties from the view style during animation is the -+// same as interpolating record properties -+class AnimationStyleInterpolator : public RecordPropertiesInterpolator { -+ public: -+ explicit AnimationStyleInterpolator( -+ jsi::Runtime &rt, -+ const jsi::Value &keyframes, -+ const std::string &componentName, -+ const std::shared_ptr &viewStylesRepository) -+ : RecordPropertiesInterpolator( -+ getComponentInterpolators(componentName), -+ {}, -+ viewStylesRepository) { -+ updateKeyframes(rt, keyframes); -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h -new file mode 100644 -index 0000000..2d4769e ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/styles/TransitionStyleInterpolator.h -@@ -0,0 +1,51 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class TransitionStyleInterpolator { -+ public: -+ TransitionStyleInterpolator( -+ const std::string &componentName, -+ const std::shared_ptr &viewStylesRepository); -+ -+ std::unordered_set getReversedPropertyNames( -+ const folly::dynamic &newPropertyValues) const; -+ -+ folly::dynamic interpolate( -+ const std::shared_ptr &shadowNode, -+ const TransitionProgressProvider &transitionProgressProvider) const; -+ -+ void discardFinishedInterpolators( -+ const TransitionProgressProvider &transitionProgressProvider); -+ void discardIrrelevantInterpolators( -+ const std::unordered_set &transitionPropertyNames); -+ void updateInterpolatedProperties( -+ const ChangedProps &changedProps, -+ const folly::dynamic &lastUpdateValue); -+ -+ private: -+ using MapInterpolatorsCallback = std::function &, -+ const std::shared_ptr &)>; -+ -+ const std::string componentName_; -+ const std::shared_ptr viewStylesRepository_; -+ -+ PropertyInterpolatorsRecord interpolators_; -+ -+ folly::dynamic mapInterpolators( -+ const TransitionProgressProvider &transitionProgressProvider, -+ const MapInterpolatorsCallback &callback) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformInterpolator.h -new file mode 100644 -index 0000000..2426df9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformInterpolator.h -@@ -0,0 +1,85 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+class TransformInterpolator { -+ public: -+ using Interpolators = -+ std::unordered_map>; -+ -+ struct UpdateContext { -+ const std::shared_ptr &node; -+ const std::shared_ptr &viewStylesRepository; -+ const std::shared_ptr &interpolators; -+ }; -+ -+ virtual ~TransformInterpolator() = default; -+ -+ virtual std::shared_ptr getDefaultOperation() const = 0; -+ virtual std::shared_ptr interpolate( -+ double progress, -+ const std::shared_ptr &from, -+ const std::shared_ptr &to, -+ const UpdateContext &context) const = 0; -+ virtual std::shared_ptr resolveOperation( -+ const std::shared_ptr &operation, -+ const UpdateContext &context) const = 0; -+}; -+ -+template -+class TransformInterpolatorBase : public TransformInterpolator { -+ public: -+ explicit TransformInterpolatorBase( -+ std::shared_ptr defaultOperation) -+ : defaultOperation_(defaultOperation) {} -+ -+ std::shared_ptr getDefaultOperation() const override { -+ return defaultOperation_; -+ } -+ -+ std::shared_ptr interpolate( -+ double progress, -+ const std::shared_ptr &from, -+ const std::shared_ptr &to, -+ const UpdateContext &context) const override { -+ return std::make_shared(interpolate( -+ progress, -+ *std::static_pointer_cast(from), -+ *std::static_pointer_cast(to), -+ context)); -+ } -+ -+ std::shared_ptr resolveOperation( -+ const std::shared_ptr &operation, -+ const UpdateContext &context) const override { -+ return std::make_shared(resolveOperation( -+ *std::static_pointer_cast(operation), context)); -+ } -+ -+ protected: -+ virtual TOperation interpolate( -+ double progress, -+ const TOperation &from, -+ const TOperation &to, -+ const UpdateContext &context) const = 0; -+ -+ virtual TOperation resolveOperation( -+ const TOperation &operation, -+ const UpdateContext &context) const { -+ return operation; -+ } -+ -+ private: -+ std::shared_ptr defaultOperation_; -+}; -+ -+using TransformInterpolators = TransformInterpolator::Interpolators; -+using TransformInterpolatorUpdateContext = TransformInterpolator::UpdateContext; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperation.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperation.h -new file mode 100644 -index 0000000..f8a2023 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperation.h -@@ -0,0 +1,87 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+#ifndef NDEBUG -+#include -+#include -+#endif // NDEBUG -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+using namespace react; -+ -+// Base struct for TransformOperation -+struct TransformOperation { -+ virtual bool operator==(const TransformOperation &other) const = 0; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const TransformOperation &operation); -+ virtual std::string stringifyOperationValue() const = 0; -+#endif // NDEBUG -+ -+ std::string getOperationName() const; -+ virtual TransformOp type() const = 0; -+ virtual bool isRelative() const; -+ -+ static std::shared_ptr fromJSIValue( -+ jsi::Runtime &rt, -+ const jsi::Value &value); -+ static std::shared_ptr fromDynamic( -+ const folly::dynamic &value); -+ folly::dynamic toDynamic() const; -+ virtual folly::dynamic valueToDynamic() const = 0; -+ -+ virtual bool canConvertTo(TransformOp type) const; -+ virtual std::vector> convertTo( -+ TransformOp type) const; -+ -+ virtual TransformMatrix3D toMatrix() const = 0; -+ void assertCanConvertTo(TransformOp type) const; -+}; -+ -+using TransformOperations = std::vector>; -+ -+// Template overload to inherit from in final operation structs -+template -+struct TransformOperationBase : public TransformOperation { -+ const TValue value; -+ -+ explicit TransformOperationBase(const TValue &value) : value(value) {} -+ virtual ~TransformOperationBase() = default; -+ -+ TransformOp type() const override { -+ return TOperation; -+ } -+ -+ bool operator==(const TransformOperation &other) const override { -+ if (type() != other.type()) { -+ return false; -+ } -+ const auto &otherOperation = -+ static_cast &>(other); -+ return value == otherOperation.value; -+ } -+ -+#ifndef NDEBUG -+ std::string stringifyOperationValue() const override; -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h -new file mode 100644 -index 0000000..781ad94 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformOperationInterpolator.h -@@ -0,0 +1,124 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+template -+concept ResolvableOperation = requires(TOperation operation) { -+ { -+ operation.value -+ } -> std::convertible_to< -+ typename std::remove_reference_t>; -+ requires Resolvable>; -+}; // NOLINT(readability/braces) -+ -+// Base implementation for simple operations -+template -+class TransformOperationInterpolator -+ : public TransformInterpolatorBase { -+ public: -+ TransformOperationInterpolator( -+ std::shared_ptr defaultOperation) -+ : TransformInterpolatorBase(defaultOperation) {} -+ -+ OperationType interpolate( -+ double progress, -+ const OperationType &from, -+ const OperationType &to, -+ const TransformInterpolatorUpdateContext &context) const override { -+ return OperationType{from.value.interpolate(progress, to.value)}; -+ } -+}; -+ -+// Specialization for PerspectiveOperation -+template <> -+class TransformOperationInterpolator -+ : public TransformInterpolatorBase { -+ public: -+ using TransformInterpolatorBase< -+ PerspectiveOperation>::TransformInterpolatorBase; -+ -+ PerspectiveOperation interpolate( -+ double progress, -+ const PerspectiveOperation &from, -+ const PerspectiveOperation &to, -+ const TransformInterpolatorUpdateContext &context) const override; -+}; -+ -+// Specialization for MatrixOperation -+template <> -+class TransformOperationInterpolator -+ : public TransformInterpolatorBase { -+ public: -+ using TransformInterpolatorBase::TransformInterpolatorBase; -+ -+ MatrixOperation interpolate( -+ double progress, -+ const MatrixOperation &from, -+ const MatrixOperation &to, -+ const TransformInterpolatorUpdateContext &context) const override; -+ -+ private: -+ TransformMatrix3D matrixFromOperation( -+ const MatrixOperation &matrixOperation, -+ const TransformInterpolatorUpdateContext &context) const; -+}; -+ -+// Specialization for resolvable operations -+template -+class TransformOperationInterpolator -+ : public TransformInterpolatorBase { -+ public: -+ TransformOperationInterpolator( -+ const std::shared_ptr &defaultOperation, -+ RelativeTo relativeTo, -+ const std::string &relativeProperty) -+ : TransformInterpolatorBase(defaultOperation), -+ relativeTo_(relativeTo), -+ relativeProperty_(relativeProperty) {} -+ -+ TOperation interpolate( -+ double progress, -+ const TOperation &from, -+ const TOperation &to, -+ const TransformInterpolatorUpdateContext &context) const override { -+ return TOperation{from.value.interpolate( -+ progress, to.value, getResolvableValueContext(context))}; -+ } -+ -+ TOperation resolveOperation( -+ const TOperation &operation, -+ const TransformInterpolatorUpdateContext &context) const override { -+ const auto &resolved = -+ operation.value.resolve(getResolvableValueContext(context)); -+ -+ if (!resolved.has_value()) { -+ return TOperation{operation.value}; -+ } -+ -+ return TOperation{resolved.value()}; -+ } -+ -+ private: -+ const RelativeTo relativeTo_; -+ const std::string relativeProperty_; -+ -+ CSSResolvableValueInterpolationContext getResolvableValueContext( -+ const TransformInterpolatorUpdateContext &context) const { -+ return { -+ .node = context.node, -+ .viewStylesRepository = context.viewStylesRepository, -+ .relativeProperty = relativeProperty_, -+ .relativeTo = relativeTo_, -+ }; -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h -new file mode 100644 -index 0000000..b0f5b10 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/TransformsStyleInterpolator.h -@@ -0,0 +1,98 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+struct TransformKeyframe { -+ const double fromOffset; -+ const double toOffset; -+ // If the value is nullopt, we would have to read it from the view style -+ // (in all other cases, both vectors will have the same number of elements of -+ // corresponding types - elements from the same index will form interpolation -+ // pairs) -+ const std::optional fromOperations; -+ const std::optional toOperations; -+}; -+ -+class TransformsStyleInterpolator final : public PropertyInterpolator { -+ public: -+ TransformsStyleInterpolator( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &interpolators, -+ const std::shared_ptr &viewStylesRepository); -+ -+ folly::dynamic getStyleValue( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getResetStyle( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getFirstKeyframeValue() const override; -+ folly::dynamic getLastKeyframeValue() const override; -+ bool equalsReversingAdjustedStartValue( -+ const folly::dynamic &propertyValue) const override; -+ -+ folly::dynamic interpolate( -+ const std::shared_ptr &shadowNode, -+ const std::shared_ptr &progressProvider) -+ const override; -+ -+ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; -+ void updateKeyframesFromStyleChange( -+ const folly::dynamic &oldStyleValue, -+ const folly::dynamic &newStyleValue, -+ const folly::dynamic &lastUpdateValue) override; -+ -+ private: -+ const std::shared_ptr interpolators_; -+ static const TransformOperations defaultStyleValue_; -+ -+ std::vector> keyframes_; -+ std::optional reversingAdjustedStartValue_; -+ -+ static std::optional parseTransformOperations( -+ jsi::Runtime &rt, -+ const jsi::Value &values); -+ static std::optional parseTransformOperations( -+ const folly::dynamic &values); -+ std::shared_ptr createTransformKeyframe( -+ double fromOffset, -+ double toOffset, -+ const std::optional &fromOperationsOptional, -+ const std::optional &toOperationsOptional) const; -+ std::pair -+ createTransformInterpolationPair( -+ const TransformOperations &fromOperations, -+ const TransformOperations &toOperations) const; -+ void addConvertedOperations( -+ const std::shared_ptr &sourceOperation, -+ const std::shared_ptr &targetOperation, -+ TransformOperations &sourceResult, -+ TransformOperations &targetResult) const; -+ std::shared_ptr getDefaultOperationOfType( -+ TransformOp type) const; -+ -+ size_t getIndexOfCurrentKeyframe( -+ const std::shared_ptr &progressProvider) const; -+ TransformOperations getFallbackValue( -+ const std::shared_ptr &shadowNode) const; -+ TransformOperations interpolateOperations( -+ const std::shared_ptr &shadowNode, -+ double keyframeProgress, -+ const TransformOperations &fromOperations, -+ const TransformOperations &toOperations) const; -+ -+ static folly::dynamic convertResultToDynamic( -+ const TransformOperations &operations); -+ TransformInterpolatorUpdateContext createUpdateContext( -+ const std::shared_ptr &shadowNode) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/matrix.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/matrix.h -new file mode 100644 -index 0000000..fe22827 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/matrix.h -@@ -0,0 +1,29 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+// Matrix -+struct MatrixOperation final -+ : public TransformOperationBase< -+ TransformOp::Matrix, -+ std::variant> { -+ using TransformOperationBase< -+ TransformOp::Matrix, -+ std::variant>:: -+ TransformOperationBase; -+ -+ explicit MatrixOperation(const TransformMatrix3D &value); -+ explicit MatrixOperation(const TransformOperations &operations); -+ -+ bool operator==(const TransformOperation &other) const override; -+ -+ folly::dynamic valueToDynamic() const override; -+ TransformMatrix3D toMatrix() const override; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/perspective.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/perspective.h -new file mode 100644 -index 0000000..09f7b82 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/perspective.h -@@ -0,0 +1,25 @@ -+#pragma once -+ -+#include -+ -+namespace reanimated::css { -+ -+struct PerspectiveOperation final -+ : public TransformOperationBase { -+ using TransformOperationBase:: -+ TransformOperationBase; -+ -+ explicit PerspectiveOperation(double value) -+ : TransformOperationBase( -+ CSSDouble(value)) {} -+ -+ folly::dynamic valueToDynamic() const override { -+ return value.value != 0 ? value.toDynamic() : folly::dynamic(); -+ } -+ -+ TransformMatrix3D toMatrix() const override { -+ return TransformMatrix3D::create(value.value); -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/rotate.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/rotate.h -new file mode 100644 -index 0000000..342e846 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/rotate.h -@@ -0,0 +1,47 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+template -+struct RotateOperationBase -+ : public TransformOperationBase { -+ using TransformOperationBase::TransformOperationBase; -+ -+ explicit RotateOperationBase(const std::string &value) -+ : TransformOperationBase(CSSAngle(value)) {} -+ -+ folly::dynamic valueToDynamic() const override { -+ return this->value.toDynamic(); -+ } -+ -+ TransformMatrix3D toMatrix() const override { -+ return TransformMatrix3D::create(this->value.value); -+ } -+}; -+ -+using RotateOperation = RotateOperationBase; -+ -+using RotateXOperation = RotateOperationBase; -+ -+using RotateYOperation = RotateOperationBase; -+ -+struct RotateZOperation final -+ : public RotateOperationBase { -+ using RotateOperationBase::RotateOperationBase; -+ -+ bool canConvertTo(TransformOp type) const override { -+ return type == TransformOp::Rotate; -+ } -+ -+ TransformOperations convertTo(TransformOp type) const override { -+ assertCanConvertTo(type); -+ return {std::make_shared(value)}; -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/scale.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/scale.h -new file mode 100644 -index 0000000..3889589 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/scale.h -@@ -0,0 +1,51 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+template -+struct ScaleOperationBase -+ : public TransformOperationBase { -+ using TransformOperationBase::TransformOperationBase; -+ -+ explicit ScaleOperationBase(const double value) -+ : TransformOperationBase(CSSDouble(value)) {} -+ -+ folly::dynamic valueToDynamic() const override { -+ return this->value.toDynamic(); -+ } -+ -+ TransformMatrix3D toMatrix() const override { -+ return TransformMatrix3D::create(this->value.value); -+ } -+}; -+ -+using ScaleXOperation = ScaleOperationBase; -+ -+using ScaleYOperation = ScaleOperationBase; -+ -+struct ScaleOperation final : public ScaleOperationBase { -+ using ScaleOperationBase::ScaleOperationBase; -+ -+ bool canConvertTo(TransformOp type) const override { -+ return type == TransformOp::ScaleX || type == TransformOp::ScaleY; -+ } -+ -+ TransformOperations convertTo(TransformOp type) const override { -+ assertCanConvertTo(type); -+ if (type == TransformOp::ScaleX) { -+ return { -+ std::make_shared(value), -+ std::make_shared(value)}; -+ } else { -+ return { -+ std::make_shared(value), -+ std::make_shared(value)}; -+ } -+ } -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/skew.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/skew.h -new file mode 100644 -index 0000000..d23502f ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/skew.h -@@ -0,0 +1,29 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+template -+struct SkewOperationBase : public TransformOperationBase { -+ using TransformOperationBase::TransformOperationBase; -+ -+ explicit SkewOperationBase(const std::string &value) -+ : TransformOperationBase(CSSAngle(value)) {} -+ -+ folly::dynamic valueToDynamic() const override { -+ return this->value.toDynamic(); -+ } -+ -+ TransformMatrix3D toMatrix() const override { -+ return TransformMatrix3D::create(this->value.value); -+ } -+}; -+ -+using SkewXOperation = SkewOperationBase; -+ -+using SkewYOperation = SkewOperationBase; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/translate.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/translate.h -new file mode 100644 -index 0000000..44f0665 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/transforms/operations/translate.h -@@ -0,0 +1,40 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+template -+struct TranslateOperationBase -+ : public TransformOperationBase { -+ using TransformOperationBase::TransformOperationBase; -+ -+ explicit TranslateOperationBase(double value) -+ : TransformOperationBase(CSSLength(value)) {} -+ explicit TranslateOperationBase(const std::string &value) -+ : TransformOperationBase(CSSLength(value)) {} -+ -+ bool isRelative() const override { -+ return this->value.isRelative; -+ } -+ -+ folly::dynamic valueToDynamic() const override { -+ return this->value.toDynamic(); -+ } -+ -+ TransformMatrix3D toMatrix() const override { -+ if (this->value.isRelative) { -+ throw std::invalid_argument( -+ "[Reanimated] Cannot convert relative translate to the matrix."); -+ } -+ return TransformMatrix3D::create(this->value.value); -+ } -+}; -+ -+using TranslateXOperation = TranslateOperationBase; -+ -+using TranslateYOperation = TranslateOperationBase; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h -new file mode 100644 -index 0000000..a5af3e6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ResolvableValueInterpolator.h -@@ -0,0 +1,49 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+/** -+ * Concrete implementation of ValueInterpolator for CSS values that require -+ * resolution before interpolation. This class handles interpolation of relative -+ * values (e.g., percentage length values) that need to be resolved to absolute -+ * values using the context describing the ShadowNode before the interpolation -+ * can occur. -+ */ -+template -+class ResolvableValueInterpolator final -+ : public SimpleValueInterpolator { -+ static_assert( -+ (... && std::is_base_of::value), -+ "[Reanimated] ResolvableValueInterpolator: All interpolated types must inherit from CSSValue"); -+ -+ public: -+ using ValueType = -+ typename SimpleValueInterpolator::ValueType; -+ -+ explicit ResolvableValueInterpolator( -+ const PropertyPath &propertyPath, -+ const ValueType &defaultStyleValue, -+ const std::shared_ptr &viewStylesRepository, -+ RelativeTo relativeTo, -+ std::string relativeProperty); -+ -+ protected: -+ folly::dynamic interpolateValue( -+ double progress, -+ const std::shared_ptr &fromValue, -+ const std::shared_ptr &toValue, -+ const ValueInterpolatorUpdateContext &context) const override; -+ -+ private: -+ RelativeTo relativeTo_; -+ std::string relativeProperty_; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h -new file mode 100644 -index 0000000..b1460ae ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/SimpleValueInterpolator.h -@@ -0,0 +1,43 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+/** -+ * Concrete implementation of ValueInterpolator for simple CSS values that don't -+ * require resolution before interpolation. This class handles direct -+ * interpolation between values without any additional processing or resolution. -+ */ -+template -+class SimpleValueInterpolator : public ValueInterpolator { -+ static_assert( -+ (... && std::is_base_of::value), -+ "[Reanimated] SimpleValueInterpolator: All interpolated types must inherit from CSSValue"); -+ -+ public: -+ using ValueType = CSSValueVariant; -+ -+ explicit SimpleValueInterpolator( -+ const PropertyPath &propertyPath, -+ const ValueType &defaultStyleValue, -+ const std::shared_ptr &viewStylesRepository); -+ -+ protected: -+ std::shared_ptr createValue( -+ jsi::Runtime &rt, -+ const jsi::Value &value) const override; -+ -+ std::shared_ptr createValue( -+ const folly::dynamic &value) const override; -+ -+ folly::dynamic interpolateValue( -+ double progress, -+ const std::shared_ptr &fromValue, -+ const std::shared_ptr &toValue, -+ const ValueInterpolatorUpdateContext &context) const override; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ValueInterpolator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ValueInterpolator.h -new file mode 100644 -index 0000000..5dd9537 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/interpolation/values/ValueInterpolator.h -@@ -0,0 +1,78 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+struct ValueKeyframe { -+ double offset; -+ std::optional> value; -+}; -+ -+/** -+ * Base class for CSS value interpolators that provides common functionality -+ * for interpolating CSS values during animations. This class should be extended -+ * by concrete implementations for specific CSS value types to provide -+ * type-specific interpolation logic. -+ */ -+class ValueInterpolator : public PropertyInterpolator { -+ public: -+ explicit ValueInterpolator( -+ const PropertyPath &propertyPath, -+ const std::shared_ptr &defaultValue, -+ const std::shared_ptr &viewStylesRepository); -+ virtual ~ValueInterpolator() = default; -+ -+ folly::dynamic getStyleValue( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getResetStyle( -+ const std::shared_ptr &shadowNode) const override; -+ folly::dynamic getFirstKeyframeValue() const override; -+ folly::dynamic getLastKeyframeValue() const override; -+ bool equalsReversingAdjustedStartValue( -+ const folly::dynamic &propertyValue) const override; -+ -+ void updateKeyframes(jsi::Runtime &rt, const jsi::Value &keyframes) override; -+ void updateKeyframesFromStyleChange( -+ const folly::dynamic &oldStyleValue, -+ const folly::dynamic &newStyleValue, -+ const folly::dynamic &lastUpdateValue) override; -+ -+ folly::dynamic interpolate( -+ const std::shared_ptr &shadowNode, -+ const std::shared_ptr &progressProvider) -+ const override; -+ -+ protected: -+ std::vector keyframes_; -+ std::shared_ptr defaultStyleValue_; -+ folly::dynamic defaultStyleValueDynamic_; -+ folly::dynamic reversingAdjustedStartValue_; -+ -+ virtual std::shared_ptr createValue( -+ jsi::Runtime &rt, -+ const jsi::Value &value) const = 0; -+ virtual std::shared_ptr createValue( -+ const folly::dynamic &value) const = 0; -+ virtual folly::dynamic interpolateValue( -+ double progress, -+ const std::shared_ptr &fromValue, -+ const std::shared_ptr &toValue, -+ const ValueInterpolatorUpdateContext &context) const = 0; -+ -+ private: -+ folly::dynamic convertOptionalToDynamic( -+ const std::optional> &value) const; -+ std::shared_ptr getFallbackValue( -+ const std::shared_ptr &shadowNode) const; -+ size_t getToKeyframeIndex( -+ const std::shared_ptr &progressProvider) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/misc/ViewStylesRepository.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/misc/ViewStylesRepository.h -new file mode 100644 -index 0000000..8365c0d ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/misc/ViewStylesRepository.h -@@ -0,0 +1,61 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+using namespace react; -+ -+struct CachedShadowNode { -+ LayoutMetrics layoutMetrics; -+ std::shared_ptr viewProps; -+}; -+ -+class ViewStylesRepository { -+ public: -+ ViewStylesRepository( -+ const std::shared_ptr &staticPropsRegistry, -+ const std::shared_ptr &animatedPropsRegistry); -+ -+ void setUIManager(const std::shared_ptr &uiManager) { -+ uiManager_ = uiManager; -+ } -+ -+ jsi::Value getNodeProp( -+ const std::shared_ptr &shadowNode, -+ const std::string &propName); -+ jsi::Value getParentNodeProp( -+ const std::shared_ptr &shadowNode, -+ const std::string &propName); -+ folly::dynamic getStyleProp(Tag tag, const PropertyPath &propertyPath); -+ -+ void clearNodesCache(); -+ -+ private: -+ std::shared_ptr uiManager_; -+ std::shared_ptr staticPropsRegistry_; -+ std::shared_ptr animatedPropsRegistry_; -+ -+ std::unordered_map shadowNodeCache_; -+ -+ void updateCacheIfNeeded( -+ CachedShadowNode &cachedNode, -+ const std::shared_ptr &shadowNode); -+ -+ static folly::dynamic getPropertyValue( -+ const folly::dynamic &value, -+ const PropertyPath &propertyPath); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/AnimationProgressProvider.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/AnimationProgressProvider.h -new file mode 100644 -index 0000000..74f2257 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/AnimationProgressProvider.h -@@ -0,0 +1,68 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+enum class AnimationProgressState { -+ Pending, // When the animation is waiting for the delay to pass -+ Running, -+ Paused, -+ Finished -+}; -+ -+class AnimationProgressProvider final : public KeyframeProgressProvider, -+ public RawProgressProvider { -+ public: -+ AnimationProgressProvider( -+ double timestamp, -+ double duration, -+ double delay, -+ double iterationCount, -+ AnimationDirection direction, -+ EasingFunction easingFunction, -+ const std::shared_ptr &keyframeEasingFunctions); -+ -+ void setIterationCount(double iterationCount); -+ void setDirection(AnimationDirection direction); -+ void setEasingFunction(const EasingFunction &easingFunction); -+ -+ AnimationDirection getDirection() const; -+ double getGlobalProgress() const override; -+ double getKeyframeProgress(double fromOffset, double toOffset) const override; -+ AnimationProgressState getState(double timestamp) const; -+ double getPauseTimestamp() const; -+ double getTotalPausedTime(double timestamp) const; -+ double getStartTimestamp(double timestamp) const; -+ -+ void pause(double timestamp); -+ void play(double timestamp); -+ void resetProgress() override; -+ -+ protected: -+ std::optional calculateRawProgress(double timestamp) override; -+ -+ private: -+ double iterationCount_; -+ AnimationDirection direction_; -+ EasingFunction easingFunction_; -+ std::shared_ptr keyframeEasingFunctions_; -+ -+ unsigned currentIteration_ = 1; -+ double previousIterationsDuration_ = 0; -+ double pauseTimestamp_ = 0; -+ double totalPausedTime_ = 0; -+ -+ bool shouldFinish(double timestamp) const; -+ -+ double updateIterationProgress(double currentIterationElapsedTime); -+ double applyAnimationDirection(double iterationProgress) const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/KeyframeProgressProvider.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/KeyframeProgressProvider.h -new file mode 100644 -index 0000000..2b61d44 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/KeyframeProgressProvider.h -@@ -0,0 +1,13 @@ -+#pragma once -+ -+namespace reanimated::css { -+ -+class KeyframeProgressProvider { -+ public: -+ virtual double getGlobalProgress() const = 0; -+ -+ virtual double getKeyframeProgress(double fromOffset, double toOffset) -+ const = 0; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/RawProgressProvider.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/RawProgressProvider.h -new file mode 100644 -index 0000000..9256aad ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/RawProgressProvider.h -@@ -0,0 +1,31 @@ -+#pragma once -+ -+#include -+namespace reanimated::css { -+ -+class RawProgressProvider { -+ public: -+ RawProgressProvider(double timestamp, double duration, double delay); -+ -+ void setDuration(double duration); -+ void setDelay(double delay); -+ -+ virtual void resetProgress(); -+ void update(double timestamp); -+ -+ protected: -+ double duration_; -+ double delay_; -+ double creationTimestamp_; -+ -+ std::optional rawProgress_; -+ std::optional previousRawProgress_; -+ -+ /** -+ * Calculates the progress of the animation at the given timestamp without -+ * applying any decorations (e.g. animation direction, easing) -+ */ -+ virtual std::optional calculateRawProgress(double timestamp) = 0; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/TransitionProgressProvider.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/TransitionProgressProvider.h -new file mode 100644 -index 0000000..696605b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/progress/TransitionProgressProvider.h -@@ -0,0 +1,82 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+enum class TransitionProgressState { Pending, Running, Finished }; -+ -+class TransitionPropertyProgressProvider final -+ : public KeyframeProgressProvider, -+ public RawProgressProvider { -+ public: -+ TransitionPropertyProgressProvider( -+ double timestamp, -+ double duration, -+ double delay, -+ const EasingFunction &easingFunction); -+ TransitionPropertyProgressProvider( -+ double timestamp, -+ double duration, -+ double delay, -+ const EasingFunction &easingFunction, -+ double reversingShorteningFactor); -+ -+ double getGlobalProgress() const override; -+ double getKeyframeProgress(double fromOffset, double toOffset) const override; -+ double getRemainingDelay(double timestamp) const; -+ double getReversingShorteningFactor() const; -+ TransitionProgressState getState() const; -+ -+ protected: -+ std::optional calculateRawProgress(double timestamp) override; -+ -+ private: -+ EasingFunction easingFunction_; -+ double reversingShorteningFactor_ = 1; -+ -+ double getElapsedTime(double timestamp) const; -+}; -+ -+using TransitionPropertyProgressProviders = std::unordered_map< -+ std::string, -+ std::shared_ptr>; -+ -+class TransitionProgressProvider final { -+ public: -+ TransitionProgressState getState() const; -+ double getMinDelay(double timestamp) const; -+ TransitionPropertyProgressProviders getPropertyProgressProviders() const; -+ std::unordered_set getRemovedProperties() const; -+ -+ void discardFinishedProgressProviders(); -+ void discardIrrelevantProgressProviders( -+ const std::unordered_set &transitionPropertyNames); -+ void runProgressProviders( -+ double timestamp, -+ const CSSTransitionPropertiesSettings &propertiesSettings, -+ const PropertyNames &changedPropertyNames, -+ const std::unordered_set &reversedPropertyNames); -+ void update(double timestamp); -+ -+ private: -+ TransitionPropertyProgressProviders propertyProgressProviders_; -+ -+ std::unordered_set removedProperties_; -+ -+ std::shared_ptr -+ createReversingShorteningProgressProvider( -+ double timestamp, -+ const CSSTransitionPropertySettings &propertySettings, -+ const TransitionPropertyProgressProvider &existingProgressProvider); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSAnimationsRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSAnimationsRegistry.h -new file mode 100644 -index 0000000..c9330a1 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSAnimationsRegistry.h -@@ -0,0 +1,95 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using CSSAnimationsMap = -+ std::unordered_map>; -+using CSSAnimationsVector = std::vector>; -+ -+class CSSAnimationsRegistry -+ : public UpdatesRegistry, -+ std::enable_shared_from_this { -+ public: -+ using SettingsUpdates = -+ std::vector>; -+ -+ bool isEmpty() const override; -+ bool hasUpdates() const; -+ -+ void apply( -+ jsi::Runtime &rt, -+ const std::shared_ptr &shadowNode, -+ const std::optional> &animationNames, -+ const CSSAnimationsMap &newAnimations, -+ const CSSAnimationSettingsUpdatesMap &settingsUpdates, -+ double timestamp); -+ void remove(Tag viewTag) override; -+ -+ void update(double timestamp); -+ -+ private: -+ using AnimationToIndexMap = -+ std::unordered_map, size_t>; -+ using RunningAnimationIndicesMap = std::unordered_map>; -+ using AnimationsToRevertMap = -+ std::unordered_map>; -+ struct RegistryEntry { -+ const CSSAnimationsVector animationsVector; -+ const AnimationToIndexMap animationToIndexMap; -+ }; -+ -+ using Registry = std::unordered_map; -+ -+ Registry registry_; -+ -+ RunningAnimationIndicesMap runningAnimationIndicesMap_; -+ AnimationsToRevertMap animationsToRevertMap_; -+ DelayedItemsManager> delayedAnimationsManager_; -+ -+ CSSAnimationsVector buildAnimationsVector( -+ jsi::Runtime &rt, -+ const std::shared_ptr &shadowNode, -+ const std::optional> &animationNames, -+ const std::optional &newAnimations) const; -+ AnimationToIndexMap buildAnimationToIndexMap( -+ const CSSAnimationsVector &animationsVector) const; -+ void updateAnimationSettings( -+ const CSSAnimationsVector &animationsVector, -+ const CSSAnimationSettingsUpdatesMap &settingsUpdates, -+ double timestamp); -+ -+ void updateViewAnimations( -+ Tag viewTag, -+ const std::vector &animationIndices, -+ double timestamp, -+ bool addToBatch); -+ void scheduleOrActivateAnimation( -+ size_t animationIndex, -+ const std::shared_ptr &animation, -+ double timestamp); -+ void removeViewAnimations(Tag viewTag); -+ void applyViewAnimationsStyle(Tag viewTag, double timestamp); -+ void activateDelayedAnimations(double timestamp); -+ void handleAnimationsToRevert(double timestamp); -+ -+ static bool addStyleUpdates( -+ folly::dynamic &target, -+ const folly::dynamic &updates, -+ bool shouldOverride); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSKeyframesRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSKeyframesRegistry.h -new file mode 100644 -index 0000000..c253890 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSKeyframesRegistry.h -@@ -0,0 +1,38 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class CSSKeyframesRegistry { -+ public: -+ CSSKeyframesRegistry( -+ const std::shared_ptr &viewStylesRepository); -+ -+ const CSSKeyframesConfig &get( -+ const std::string &animationName, -+ const std::string &componentName); -+ void set( -+ const std::string &animationName, -+ const std::string &componentName, -+ CSSKeyframesConfig &&config); -+ void remove( -+ const std::string &animationName, -+ const std::string &componentName); -+ -+ private: -+ using ConfigsByComponentName = -+ std::unordered_map; -+ -+ std::unordered_map registry_; -+ const std::shared_ptr viewStylesRepository_; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSTransitionsRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSTransitionsRegistry.h -new file mode 100644 -index 0000000..c0aa7a6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/CSSTransitionsRegistry.h -@@ -0,0 +1,56 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+class CSSTransitionsRegistry -+ : public UpdatesRegistry, -+ public std::enable_shared_from_this { -+ public: -+ CSSTransitionsRegistry( -+ const std::shared_ptr &staticPropsRegistry, -+ const GetAnimationTimestampFunction &getCurrentTimestamp); -+ -+ bool isEmpty() const override; -+ bool hasUpdates() const; -+ -+ void add(const std::shared_ptr &transition); -+ void updateSettings(Tag viewTag, const PartialCSSTransitionConfig &config); -+ void remove(Tag viewTag) override; -+ -+ void update(double timestamp); -+ -+ private: -+ using Registry = std::unordered_map>; -+ -+ const GetAnimationTimestampFunction &getCurrentTimestamp_; -+ const std::shared_ptr staticPropsRegistry_; -+ -+ Registry registry_; -+ -+ std::unordered_set runningTransitionTags_; -+ DelayedItemsManager delayedTransitionsManager_; -+ -+ void activateDelayedTransitions(double timestamp); -+ void scheduleOrActivateTransition( -+ const std::shared_ptr &transition); -+ PropsObserver createPropsObserver(Tag viewTag); -+ void updateInUpdatesRegistry( -+ const std::shared_ptr &transition, -+ const folly::dynamic &updates); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/StaticPropsRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/StaticPropsRegistry.h -new file mode 100644 -index 0000000..2b14815 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/registries/StaticPropsRegistry.h -@@ -0,0 +1,37 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+using namespace react; -+ -+using PropsObserver = std::function< -+ void(const folly::dynamic &oldProps, const folly::dynamic &newProps)>; -+ -+class StaticPropsRegistry { -+ public: -+ void set(jsi::Runtime &rt, Tag viewTag, const jsi::Value &props); -+ folly::dynamic get(Tag viewTag) const; -+ bool has(Tag viewTag) const; -+ void remove(Tag viewTag); -+ bool isEmpty() const; -+ -+ bool hasObservers(Tag viewTag) const; -+ void setObserver(Tag viewTag, PropsObserver observer); -+ void removeObserver(Tag viewTag); -+ -+ private: -+ std::unordered_map registry_; -+ std::unordered_map observers_; -+ -+ void notifyObservers( -+ Tag viewTag, -+ const folly::dynamic &oldProps, -+ const folly::dynamic &newProps); -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGLength.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGLength.h -new file mode 100644 -index 0000000..421de88 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGLength.h -@@ -0,0 +1,36 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated::css { -+ -+struct SVGLength : public CSSSimpleValue { -+ double value; -+ bool isPercentage; -+ -+ SVGLength(); -+ explicit SVGLength(double value); -+ explicit SVGLength(double value, bool isPercentage); -+ explicit SVGLength(const char *value); -+ explicit SVGLength(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit SVGLength(const folly::dynamic &value); -+ -+ static bool canConstruct(const std::string &value); -+ static bool canConstruct(const char *value); -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ SVGLength interpolate(double progress, const SVGLength &to) const override; -+ -+ bool operator==(const SVGLength &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<(std::ostream &os, const SVGLength &dimension); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGStrokeDashArray.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGStrokeDashArray.h -new file mode 100644 -index 0000000..79388d2 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/svg/values/SVGStrokeDashArray.h -@@ -0,0 +1,36 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+struct SVGStrokeDashArray : public CSSSimpleValue { -+ std::vector values; -+ -+ SVGStrokeDashArray(); -+ explicit SVGStrokeDashArray(const std::vector &values); -+ explicit SVGStrokeDashArray(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ explicit SVGStrokeDashArray(const folly::dynamic &value); -+ -+ static bool canConstruct(jsi::Runtime &rt, const jsi::Value &jsiValue); -+ static bool canConstruct(const folly::dynamic &value); -+ -+ folly::dynamic toDynamic() const override; -+ std::string toString() const override; -+ SVGStrokeDashArray interpolate(double progress, const SVGStrokeDashArray &to) -+ const override; -+ -+ bool operator==(const SVGStrokeDashArray &other) const; -+ -+#ifndef NDEBUG -+ friend std::ostream &operator<<( -+ std::ostream &os, -+ const SVGStrokeDashArray &strokeDashArray); -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/DelayedItemsManager.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/DelayedItemsManager.h -new file mode 100644 -index 0000000..5f6292b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/DelayedItemsManager.h -@@ -0,0 +1,47 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+template -+struct DelayedItem { -+ const double timestamp; -+ const TValue value; -+ -+ DelayedItem(double timestamp, TValue value); -+}; -+ -+template -+struct DelayedItemComparator { -+ bool operator()( -+ const DelayedItem &lhs, -+ const DelayedItem &rhs) const; -+}; -+ -+template -+class DelayedItemsManager { -+ using Item = DelayedItem; -+ using ItemSet = std::set>; -+ using ItemMap = std::unordered_map; -+ -+ ItemSet itemsSet_; -+ ItemMap itemsMap_; -+ -+ public: -+ void add(double timestamp, TValue value); -+ Item pop(); -+ bool remove(TValue value); -+ const Item &top() const; -+ bool empty() const; -+ size_t size() const; -+}; -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/algorithms.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/algorithms.h -new file mode 100644 -index 0000000..1221ae3 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/algorithms.h -@@ -0,0 +1,10 @@ -+#pragma once -+ -+#include -+#include -+ -+namespace reanimated::css { -+ -+size_t firstSmallerOrEqual(double x, const std::vector &arr); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/interpolators.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/interpolators.h -new file mode 100644 -index 0000000..01a22ea ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/interpolators.h -@@ -0,0 +1,23 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+std::shared_ptr createPropertyInterpolator( -+ const std::string &propertyName, -+ const PropertyPath &propertyPath, -+ const InterpolatorFactoriesRecord &factories, -+ const std::shared_ptr &viewStylesRepository); -+ -+std::shared_ptr createPropertyInterpolator( -+ size_t arrayIndex, -+ const PropertyPath &propertyPath, -+ const InterpolatorFactoriesArray &factories, -+ const std::shared_ptr &viewStylesRepository); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/keyframes.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/keyframes.h -new file mode 100644 -index 0000000..d7842e6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/keyframes.h -@@ -0,0 +1,15 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+using namespace facebook; -+ -+std::vector> parseJSIKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &keyframes); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/props.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/props.h -new file mode 100644 -index 0000000..9c1cecd ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/CSS/utils/props.h -@@ -0,0 +1,36 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated::css { -+ -+struct ChangedProps { -+ const folly::dynamic oldProps; -+ const folly::dynamic newProps; -+ const PropertyNames changedPropertyNames; -+}; -+ -+bool isDiscreteProperty( -+ const std::string &propName, -+ const std::string &componentName); -+ -+// We need to specify it here because there are 2 methods referencing -+// each other in the recursion and areArraysDifferentRecursive must be -+// aware that getChangedPropsRecursive exists -+std::pair getChangedPropsRecursive( -+ const folly::dynamic &oldProp, -+ const folly::dynamic &newProp); -+ -+ChangedProps getChangedProps( -+ const folly::dynamic &oldProps, -+ const folly::dynamic &newProps, -+ const PropertyNames &allowedProperties); -+ -+} // namespace reanimated::css -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitHook.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitHook.h -new file mode 100644 -index 0000000..1ca39bf ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitHook.h -@@ -0,0 +1,51 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+#include -+ -+using namespace facebook::react; -+ -+namespace reanimated { -+ -+class ReanimatedCommitHook -+ : public UIManagerCommitHook, -+ public std::enable_shared_from_this { -+ public: -+ ReanimatedCommitHook( -+ const std::shared_ptr &uiManager, -+ const std::shared_ptr &updatesRegistryManager, -+ const std::shared_ptr &layoutAnimationsProxy); -+ -+ ~ReanimatedCommitHook() noexcept override; -+ -+ void commitHookWasRegistered(UIManager const &) noexcept override {} -+ -+ void commitHookWasUnregistered(UIManager const &) noexcept override {} -+ -+ void maybeInitializeLayoutAnimations(SurfaceId surfaceId); -+ -+ RootShadowNode::Unshared shadowTreeWillCommit( -+ ShadowTree const &shadowTree, -+ RootShadowNode::Shared const &oldRootShadowNode, -+ RootShadowNode::Unshared const &newRootShadowNode -+#if REACT_NATIVE_MINOR_VERSION >= 80 -+ , -+ const ShadowTreeCommitOptions &commitOptions -+#endif -+ ) noexcept override; -+ -+ private: -+ std::shared_ptr uiManager_; -+ std::shared_ptr updatesRegistryManager_; -+ std::shared_ptr layoutAnimationsProxy_; -+ -+ SurfaceId currentMaxSurfaceId_ = -1; -+ -+ std::mutex mutex_; // Protects `currentMaxSurfaceId_`. -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitShadowNode.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitShadowNode.h -new file mode 100644 -index 0000000..5263921 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitShadowNode.h -@@ -0,0 +1,46 @@ -+#pragma once -+ -+#include -+ -+using namespace facebook::react; -+ -+namespace reanimated { -+ -+// We use this trait to mark that a commit was created by Reanimated. -+// Traits are copied when nodes are cloned, so this information -+// won't be lost unless someone explicitly overrides it. -+// We need this information to skip unnecessary updates in -+// the commit hook. -+// Currently RN traits go up to 10, so hopefully -+// the arbitrarily chosen numbers 27 and 28 will be safe :) -+ -+// We have to use 2 traits, because we want to distinguish reanimated -+// commits both in the commit hook and mount hook. If we only had one trait -+// and didn't remove it in the commit hook, then any node that would clone -+// this node would also have our commit trait, rendering this trait useless. -+constexpr ShadowNodeTraits::Trait ReanimatedCommitTrait{1 << 27}; -+constexpr ShadowNodeTraits::Trait ReanimatedMountTrait{1 << 28}; -+ -+class ReanimatedCommitShadowNode : public ShadowNode { -+ public: -+ inline void setReanimatedCommitTrait() { -+ traits_.set(ReanimatedCommitTrait); -+ } -+ inline void unsetReanimatedCommitTrait() { -+ traits_.unset(ReanimatedCommitTrait); -+ } -+ inline bool hasReanimatedCommitTrait() { -+ return traits_.check(ReanimatedCommitTrait); -+ } -+ inline void setReanimatedMountTrait() { -+ traits_.set(ReanimatedMountTrait); -+ } -+ inline void unsetReanimatedMountTrait() { -+ traits_.unset(ReanimatedMountTrait); -+ } -+ inline bool hasReanimatedMountTrait() { -+ return traits_.check(ReanimatedMountTrait); -+ } -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedMountHook.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedMountHook.h -new file mode 100644 -index 0000000..ea077dd ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedMountHook.h -@@ -0,0 +1,37 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+#include -+ -+namespace reanimated { -+ -+using namespace facebook::react; -+ -+class ReanimatedMountHook : public UIManagerMountHook { -+ public: -+ ReanimatedMountHook( -+ const std::shared_ptr &uiManager, -+ const std::shared_ptr &updatesRegistryManager, -+ const std::function &requestFlush); -+ ~ReanimatedMountHook() noexcept override; -+ -+ void shadowTreeDidMount( -+ RootShadowNode::Shared const &rootShadowNode, -+#if REACT_NATIVE_MINOR_VERSION >= 81 -+ HighResTimeStamp /*unmountTime*/ -+#else -+ double /*unmountTime*/ -+#endif // REACT_NATIVE_MINOR_VERSION >= 81 -+ ) noexcept override; -+ -+ private: -+ const std::shared_ptr uiManager_; -+ const std::shared_ptr updatesRegistryManager_; -+ const std::function requestFlush_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ShadowTreeCloner.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ShadowTreeCloner.h -new file mode 100644 -index 0000000..278ae1e ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ShadowTreeCloner.h -@@ -0,0 +1,26 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+using namespace facebook; -+using namespace react; -+ -+namespace reanimated { -+ -+using PropsMap = -+ std::unordered_map>; -+using ChildrenMap = -+ std::unordered_map>; -+ -+RootShadowNode::Unshared cloneShadowTreeWithNewProps( -+ const RootShadowNode &oldRootNode, -+ const PropsMap &propsMap); -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/AnimatedPropsRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/AnimatedPropsRegistry.h -new file mode 100644 -index 0000000..57c2c24 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/AnimatedPropsRegistry.h -@@ -0,0 +1,19 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+class AnimatedPropsRegistry : public UpdatesRegistry { -+ public: -+ void update(jsi::Runtime &rt, const jsi::Value &operations); -+ void remove(Tag tag) override; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistry.h -new file mode 100644 -index 0000000..6f32763 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistry.h -@@ -0,0 +1,78 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace react; -+ -+using UpdatesBatch = -+ std::vector, folly::dynamic>>; -+using RegistryMap = std::unordered_map< -+ Tag, -+ std::pair, folly::dynamic>>; -+ -+#ifdef ANDROID -+struct PropsToRevert { -+ std::shared_ptr shadowNode; -+ std::unordered_set props; -+}; -+ -+using PropsToRevertMap = std::unordered_map; -+#endif -+ -+class UpdatesRegistry { -+ public: -+ virtual ~UpdatesRegistry() {} -+ -+ std::lock_guard lock() const; -+ -+ virtual bool isEmpty() const; -+ folly::dynamic get(Tag tag) const; -+ virtual void remove(Tag tag) = 0; -+ -+#ifdef ANDROID -+ bool hasPropsToRevert() const; -+ void collectPropsToRevert(PropsToRevertMap &propsToRevertMap); -+#endif -+ -+ void flushUpdates(UpdatesBatch &updatesBatch); -+ void collectProps(PropsMap &propsMap); -+ -+ protected: -+ mutable std::mutex mutex_; -+ RegistryMap updatesRegistry_; -+ -+ void addUpdatesToBatch( -+ const std::shared_ptr &shadowNode, -+ const folly::dynamic &props); -+ folly::dynamic getUpdatesFromRegistry(const Tag tag) const; -+ void setInUpdatesRegistry( -+ const std::shared_ptr &shadowNode, -+ const folly::dynamic &props); -+ void removeFromUpdatesRegistry(Tag tag); -+ -+ private: -+ UpdatesBatch updatesBatch_; -+ -+ void flushUpdatesToRegistry(const UpdatesBatch &updatesBatch); -+ -+#ifdef ANDROID -+ PropsToRevertMap propsToRevertMap_; -+ -+ void updatePropsToRevert(Tag tag, const folly::dynamic *newProps = nullptr); -+#endif -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistryManager.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistryManager.h -new file mode 100644 -index 0000000..b5a54cb ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/updates/UpdatesRegistryManager.h -@@ -0,0 +1,70 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace css; -+ -+class UpdatesRegistryManager { -+ public: -+ explicit UpdatesRegistryManager( -+ const std::shared_ptr &staticPropsRegistry); -+ -+ std::lock_guard lock() const; -+ -+ // TODO - ensure that other sublibraries can easily hook into this registry -+ // manager (e.g. add priority to registries) -+ void addRegistry(const std::shared_ptr ®istry); -+ -+ void pauseReanimatedCommits(); -+ bool shouldReanimatedSkipCommit(); -+ void unpauseReanimatedCommits(); -+ -+ void pleaseCommitAfterPause(); -+ bool shouldCommitAfterPause(); -+ void cancelCommitAfterPause(); -+ -+ void markNodeAsRemovable(const std::shared_ptr &shadowNode); -+ void unmarkNodeAsRemovable(Tag viewTag); -+ void handleNodeRemovals(const RootShadowNode &rootShadowNode); -+ PropsMap collectProps(); -+ -+#ifdef ANDROID -+ bool hasPropsToRevert(); -+ void collectPropsToRevertBySurface( -+ std::unordered_map &propsMapBySurface); -+ void clearPropsToRevert(SurfaceId surfaceId); -+#endif -+ -+ private: -+ using RemovableShadowNodes = -+ std::unordered_map>; -+ -+ mutable std::mutex mutex_; -+ std::atomic isPaused_; -+ std::atomic shouldCommitAfterPause_; -+ RemovableShadowNodes removableShadowNodes_; -+ std::vector> registries_; -+ const std::shared_ptr staticPropsRegistry_; -+ -+#ifdef ANDROID -+ PropsToRevertMap propsToRevertMap_; -+ -+ static void addToPropsMap( -+ PropsMap &propsMap, -+ const std::shared_ptr &shadowNode, -+ const folly::dynamic &props); -+#endif -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationType.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationType.h -new file mode 100644 -index 0000000..6c36ae0 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationType.h -@@ -0,0 +1,7 @@ -+#pragma once -+ -+typedef enum LayoutAnimationType { -+ ENTERING = 1, -+ EXITING = 2, -+ LAYOUT = 3, -+} LayoutAnimationType; -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsManager.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsManager.h -new file mode 100644 -index 0000000..5e9d3ca ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsManager.h -@@ -0,0 +1,64 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace worklets; -+ -+struct LayoutAnimationConfig { -+ int tag; -+ LayoutAnimationType type; -+ std::shared_ptr config; -+}; -+ -+class LayoutAnimationsManager { -+ public: -+ explicit LayoutAnimationsManager(const std::shared_ptr &jsLogger) -+ : jsLogger_(jsLogger) {} -+ void configureAnimationBatch( -+ const std::vector &layoutAnimationsBatch); -+ void setShouldAnimateExiting(const int tag, const bool value); -+ bool shouldAnimateExiting(const int tag, const bool shouldAnimate); -+ bool hasLayoutAnimation(const int tag, const LayoutAnimationType type); -+ void startLayoutAnimation( -+ jsi::Runtime &rt, -+ const int tag, -+ const LayoutAnimationType type, -+ const jsi::Object &values); -+ void clearLayoutAnimationConfig(const int tag); -+ void cancelLayoutAnimation(jsi::Runtime &rt, const int tag) const; -+ void transferConfigFromNativeID(const int nativeId, const int tag); -+ -+ private: -+ std::unordered_map> &getConfigsForType( -+ const LayoutAnimationType type); -+ -+ std::shared_ptr jsLogger_; -+ -+ std::unordered_map> -+ enteringAnimationsForNativeID_; -+ std::unordered_map> enteringAnimations_; -+ std::unordered_map> exitingAnimations_; -+ std::unordered_map> layoutAnimations_; -+ std::unordered_map shouldAnimateExitingForTag_; -+ mutable std::recursive_mutex -+ animationsMutex_; // Protects `enteringAnimations_`, `exitingAnimations_`, -+ // `layoutAnimations_` and `shouldAnimateExitingForTag_`. -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsProxy.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsProxy.h -new file mode 100644 -index 0000000..8930af9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsProxy.h -@@ -0,0 +1,140 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+class ReanimatedModuleProxy; -+ -+using namespace facebook; -+ -+struct LayoutAnimation { -+ std::shared_ptr finalView, currentView; -+ Tag parentTag; -+ std::optional opacity; -+ int count = 1; -+ LayoutAnimation &operator=(const LayoutAnimation &other) = default; -+}; -+ -+struct LayoutAnimationsProxy -+ : public MountingOverrideDelegate, -+ public std::enable_shared_from_this { -+ mutable std::unordered_map> nodeForTag_; -+ mutable std::unordered_map layoutAnimations_; -+ mutable std::recursive_mutex mutex; -+ mutable SurfaceManager surfaceManager; -+ mutable std::unordered_set> deadNodes; -+ mutable std::unordered_map leastRemoved; -+ mutable std::vector finishedAnimationTags_; -+ std::shared_ptr layoutAnimationsManager_; -+ std::shared_ptr contextContainer_; -+ SharedComponentDescriptorRegistry componentDescriptorRegistry_; -+ jsi::Runtime &uiRuntime_; -+ const std::shared_ptr uiScheduler_; -+ LayoutAnimationsProxy( -+ std::shared_ptr layoutAnimationsManager, -+ SharedComponentDescriptorRegistry componentDescriptorRegistry, -+ std::shared_ptr contextContainer, -+ jsi::Runtime &uiRuntime, -+ const std::shared_ptr uiScheduler) -+ : layoutAnimationsManager_(layoutAnimationsManager), -+ contextContainer_(contextContainer), -+ componentDescriptorRegistry_(componentDescriptorRegistry), -+ uiRuntime_(uiRuntime), -+ uiScheduler_(uiScheduler) {} -+ -+ void startEnteringAnimation(const int tag, ShadowViewMutation &mutation) -+ const; -+ void startExitingAnimation(const int tag, ShadowViewMutation &mutation) const; -+ void startLayoutAnimation(const int tag, const ShadowViewMutation &mutation) -+ const; -+ -+ void transferConfigFromNativeID(const std::string nativeId, const int tag) -+ const; -+ std::optional progressLayoutAnimation( -+ int tag, -+ const jsi::Object &newStyle); -+ std::optional endLayoutAnimation(int tag, bool shouldRemove); -+ void maybeCancelAnimation(const int tag) const; -+ -+ void parseRemoveMutations( -+ std::unordered_map &movedViews, -+ ShadowViewMutationList &mutations, -+ std::vector> &roots) const; -+ void handleRemovals( -+ ShadowViewMutationList &filteredMutations, -+ std::vector> &roots) const; -+ -+ void handleUpdatesAndEnterings( -+ ShadowViewMutationList &filteredMutations, -+ const std::unordered_map &movedViews, -+ ShadowViewMutationList &mutations, -+ const PropsParserContext &propsParserContext, -+ SurfaceId surfaceId) const; -+ void addOngoingAnimations( -+ SurfaceId surfaceId, -+ ShadowViewMutationList &mutations) const; -+ void updateOngoingAnimationTarget( -+ const int tag, -+ const ShadowViewMutation &mutation) const; -+ std::shared_ptr cloneViewWithoutOpacity( -+ facebook::react::ShadowViewMutation &mutation, -+ const PropsParserContext &propsParserContext) const; -+ void maybeRestoreOpacity( -+ LayoutAnimation &layoutAnimation, -+ const jsi::Object &newStyle) const; -+ void maybeUpdateWindowDimensions( -+ facebook::react::ShadowViewMutation &mutation, -+ SurfaceId surfaceId) const; -+ void createLayoutAnimation( -+ const ShadowViewMutation &mutation, -+ ShadowView &oldView, -+ const SurfaceId &surfaceId, -+ const int tag) const; -+ -+ void updateIndexForMutation(ShadowViewMutation &mutation) const; -+ -+ void removeRecursively( -+ std::shared_ptr node, -+ ShadowViewMutationList &mutations) const; -+ bool startAnimationsRecursively( -+ std::shared_ptr node, -+ const bool shouldRemoveSubviewsWithoutAnimations, -+ const bool shouldAnimate, -+ const bool isScreenPop, -+ ShadowViewMutationList &mutations) const; -+ void endAnimationsRecursively( -+ std::shared_ptr node, -+ ShadowViewMutationList &mutations) const; -+ void maybeDropAncestors( -+ std::shared_ptr node, -+ std::shared_ptr child, -+ ShadowViewMutationList &cleanupMutations) const; -+ -+ const ComponentDescriptor &getComponentDescriptorForShadowView( -+ const ShadowView &shadowView) const; -+ -+ // MountingOverrideDelegate -+ -+ bool shouldOverridePullTransaction() const override; -+ std::optional pullTransaction( -+ SurfaceId surfaceId, -+ MountingTransaction::Number number, -+ const TransactionTelemetry &telemetry, -+ ShadowViewMutationList mutations) const override; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsUtils.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsUtils.h -new file mode 100644 -index 0000000..8cf936a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsUtils.h -@@ -0,0 +1,174 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+struct Rect { -+ double width, height; -+}; -+ -+struct Frame { -+ std::optional x, y, width, height; -+ Frame(jsi::Runtime &runtime, const jsi::Object &newStyle) { -+ if (newStyle.hasProperty(runtime, "originX")) { -+ x = newStyle.getProperty(runtime, "originX").asNumber(); -+ } -+ if (newStyle.hasProperty(runtime, "originY")) { -+ y = newStyle.getProperty(runtime, "originY").asNumber(); -+ } -+ if (newStyle.hasProperty(runtime, "width")) { -+ width = newStyle.getProperty(runtime, "width").asNumber(); -+ } -+ if (newStyle.hasProperty(runtime, "height")) { -+ height = newStyle.getProperty(runtime, "height").asNumber(); -+ } -+ } -+}; -+ -+struct UpdateValues { -+ Props::Shared newProps; -+ Frame frame; -+}; -+ -+struct Snapshot { -+ double x, y, width, height, windowWidth, windowHeight; -+ Snapshot(const ShadowView &shadowView, Rect window) { -+ const auto &frame = shadowView.layoutMetrics.frame; -+ x = frame.origin.x; -+ y = frame.origin.y; -+ width = frame.size.width; -+ height = frame.size.height; -+ windowWidth = window.width; -+ windowHeight = window.height; -+ } -+}; -+ -+typedef enum ExitingState { -+ UNDEFINED = 1, -+ WAITING = 2, -+ ANIMATING = 4, -+ DEAD = 8, -+ MOVED = 16, -+ DELETED = 32, -+} ExitingState; -+ -+struct MutationNode; -+ -+/** -+ Represents a view that was either removed or had a child removed from the -+ ShadowTree -+ */ -+struct Node { -+ std::vector> children, unflattenedChildren; -+ std::shared_ptr parent, unflattenedParent; -+ Tag tag; -+ void removeChildFromUnflattenedTree(std::shared_ptr child); -+ void applyMutationToIndices(ShadowViewMutation mutation); -+ void insertChildren(std::vector> &newChildren); -+ void insertUnflattenedChildren( -+ std::vector> &newChildren); -+ virtual bool isMutationMode(); -+ explicit Node(const Tag tag) : tag(tag) {} -+ Node(Node &&node) -+ : children(std::move(node.children)), -+ unflattenedChildren(std::move(node.unflattenedChildren)), -+ tag(node.tag) {} -+ Node(Node &node) -+ : children(node.children), -+ unflattenedChildren(node.unflattenedChildren), -+ tag(node.tag) {} -+ virtual ~Node() = default; -+}; -+ -+/** -+ Represents a view that was removed from the ShadowTree -+ */ -+struct MutationNode : public Node { -+ ShadowViewMutation mutation; -+ ExitingState state = UNDEFINED; -+ explicit MutationNode(ShadowViewMutation &mutation) -+ : Node(mutation.oldChildShadowView.tag), mutation(mutation) {} -+ MutationNode(ShadowViewMutation &mutation, Node &&node) -+ : Node(std::move(node)), mutation(mutation) {} -+ bool isMutationMode() override; -+}; -+ -+struct SurfaceManager { -+ mutable std::unordered_map< -+ SurfaceId, -+ std::shared_ptr>> -+ props_; -+ mutable std::unordered_map windows_; -+ -+ std::unordered_map &getUpdateMap(SurfaceId surfaceId); -+ void -+ updateWindow(SurfaceId surfaceId, double windowWidth, double windowHeight); -+ Rect getWindow(SurfaceId surfaceId); -+}; -+ -+static inline void updateLayoutMetrics( -+ LayoutMetrics &layoutMetrics, -+ Frame &frame) { -+ // we use optional's here to avoid overwriting non-animated values -+ if (frame.width) { -+ layoutMetrics.frame.size.width = *frame.width; -+ } -+ if (frame.height) { -+ layoutMetrics.frame.size.height = *frame.height; -+ } -+ if (frame.x) { -+ layoutMetrics.frame.origin.x = *frame.x; -+ } -+ if (frame.y) { -+ layoutMetrics.frame.origin.y = *frame.y; -+ } -+} -+ -+static inline bool isRNSScreen(std::shared_ptr node) { -+ const auto &componentName = node->mutation.oldChildShadowView.componentName; -+ return !std::strcmp(componentName, "RNSScreenStack") || -+ !std::strcmp(componentName, "RNSScreen") || -+ !std::strcmp(componentName, "RNSModalScreen"); -+} -+ -+static inline bool hasLayoutChanged(const ShadowViewMutation &mutation) { -+ return mutation.oldChildShadowView.layoutMetrics.frame != -+ mutation.newChildShadowView.layoutMetrics.frame; -+} -+ -+static inline void mergeAndSwap( -+ std::vector> &A, -+ std::vector> &B) { -+ std::vector> merged; -+ auto it1 = A.begin(), it2 = B.begin(); -+ while (it1 != A.end() && it2 != B.end()) { -+ if ((*it1)->mutation.index < (*it2)->mutation.index) { -+ merged.push_back(*it1); -+ it1++; -+ } else { -+ merged.push_back(*it2); -+ it2++; -+ } -+ } -+ while (it1 != A.end()) { -+ merged.push_back(*it1); -+ it1++; -+ } -+ while (it2 != B.end()) { -+ merged.push_back(*it2); -+ it2++; -+ } -+ std::swap(A, merged); -+} -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/PropValueProcessor.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/PropValueProcessor.h -new file mode 100644 -index 0000000..e44f2c6 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/PropValueProcessor.h -@@ -0,0 +1,47 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace react; -+ -+class PropValueProcessor { -+ public: -+ static const std::unordered_set layoutProps; -+ static const std::unordered_set styleProps; -+ -+ static std::string processPropValue( -+ const std::string &propName, -+ const std::shared_ptr &shadowNode, -+ jsi::Runtime &rt); -+ -+ private: -+ static std::string processLayoutProp( -+ const std::string &propName, -+ const LayoutableShadowNode *layoutableShadowNode); -+ -+ static std::string processStyleProp( -+ const std::string &propName, -+ const std::shared_ptr &viewProps, -+ jsi::Runtime &rt); -+ -+ static std::string intColorToHex(const int val); -+ -+ static jsi::Object boxShadowPreprocessing( -+ const BoxShadow &boxShadow, -+ jsi::Runtime &rt); -+ -+ static bool isLayoutProp(const std::string &propName); -+ -+ static bool isStyleProp(const std::string &propName); -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxy.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxy.h -new file mode 100644 -index 0000000..9e0599a ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxy.h -@@ -0,0 +1,265 @@ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace css; -+ -+using UpdatesBatch = -+ std::vector, folly::dynamic>>; -+ -+class ReanimatedModuleProxy -+ : public ReanimatedModuleProxySpec, -+ public std::enable_shared_from_this { -+ public: -+ ReanimatedModuleProxy( -+ const std::shared_ptr &workletsModuleProxy, -+ jsi::Runtime &rnRuntime, -+ const std::shared_ptr &jsCallInvoker, -+ const PlatformDepMethodsHolder &platformDepMethodsHolder, -+ const bool isReducedMotion); -+ -+ // We need this init method to initialize callbacks with -+ // weak_from_this() which is available only after the object -+ // is fully constructed. -+ void init(const PlatformDepMethodsHolder &platformDepMethodsHolder); -+ -+ ~ReanimatedModuleProxy(); -+ -+ jsi::Value registerEventHandler( -+ jsi::Runtime &rt, -+ const jsi::Value &worklet, -+ const jsi::Value &eventName, -+ const jsi::Value &emitterReactTag) override; -+ void unregisterEventHandler( -+ jsi::Runtime &rt, -+ const jsi::Value ®istrationId) override; -+ -+ jsi::Value getViewProp( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &propName, -+ const jsi::Value &callback) override; -+ -+ jsi::Value getStaticFeatureFlag(jsi::Runtime &rt, const jsi::Value &name) -+ override; -+ jsi::Value setDynamicFeatureFlag( -+ jsi::Runtime &rt, -+ const jsi::Value &name, -+ const jsi::Value &value) override; -+ -+ jsi::Value configureLayoutAnimationBatch( -+ jsi::Runtime &rt, -+ const jsi::Value &layoutAnimationsBatch) override; -+ void setShouldAnimateExiting( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &shouldAnimate) override; -+ -+ void onRender(double timestampMs); -+ -+ bool isAnyHandlerWaitingForEvent( -+ const std::string &eventName, -+ const int emitterReactTag); -+ -+ void maybeRequestRender(); -+ -+ bool handleEvent( -+ const std::string &eventName, -+ const int emitterReactTag, -+ const jsi::Value &payload, -+ double currentTime); -+ -+ inline std::shared_ptr getJSLogger() const { -+ return jsLogger_; -+ } -+ -+ bool handleRawEvent(const RawEvent &rawEvent, double currentTime); -+ -+ void maybeRunCSSLoop(); -+ double getCssTimestamp(); -+ -+ void performOperations(); -+ -+ void setViewStyle( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &viewStyle) override; -+ -+ void markNodeAsRemovable( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper) override; -+ void unmarkNodeAsRemovable(jsi::Runtime &rt, const jsi::Value &viewTag) -+ override; -+ -+ void registerCSSKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &animationName, -+ const jsi::Value &viewName, -+ const jsi::Value &keyframesConfig) override; -+ void unregisterCSSKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &animationName, -+ const jsi::Value &viewName) override; -+ -+ void applyCSSAnimations( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &animationUpdates) override; -+ void unregisterCSSAnimations(const jsi::Value &viewTag) override; -+ -+ void registerCSSTransition( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &transitionConfig) override; -+ void updateCSSTransition( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &configUpdates) override; -+ void unregisterCSSTransition(jsi::Runtime &rt, const jsi::Value &viewTag) -+ override; -+ -+ void cssLoopCallback(const double /*timestampMs*/); -+ -+ void dispatchCommand( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeValue, -+ const jsi::Value &commandNameValue, -+ const jsi::Value &argsValue); -+ -+ jsi::String obtainProp( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &propName); -+ -+ jsi::Value measure(jsi::Runtime &rt, const jsi::Value &shadowNodeValue); -+ -+ void initializeFabric(const std::shared_ptr &uiManager); -+ -+ void initializeLayoutAnimationsProxy(); -+ -+ std::string obtainPropFromShadowNode( -+ jsi::Runtime &rt, -+ const std::string &propName, -+ const std::shared_ptr &shadowNode); -+ -+ jsi::Value registerSensor( -+ jsi::Runtime &rt, -+ const jsi::Value &sensorType, -+ const jsi::Value &interval, -+ const jsi::Value &iosReferenceFrame, -+ const jsi::Value &sensorDataContainer) override; -+ void unregisterSensor(jsi::Runtime &rt, const jsi::Value &sensorId) override; -+ -+ void cleanupSensors(); -+ -+ jsi::Value subscribeForKeyboardEvents( -+ jsi::Runtime &rt, -+ const jsi::Value &keyboardEventContainer, -+ const jsi::Value &isStatusBarTranslucent, -+ const jsi::Value &isNavigationBarTranslucent) override; -+ void unsubscribeFromKeyboardEvents( -+ jsi::Runtime &rt, -+ const jsi::Value &listenerId) override; -+ -+ inline LayoutAnimationsManager &layoutAnimationsManager() { -+ return *layoutAnimationsManager_; -+ } -+ -+ [[nodiscard]] inline bool isReducedMotion() const { -+ return isReducedMotion_; -+ } -+ -+ [[nodiscard]] inline std::shared_ptr -+ getWorkletsModuleProxy() const { -+ return workletsModuleProxy_; -+ } -+ -+ void requestFlushRegistry(); -+ std::function createRegistriesLeakCheck(); -+ -+ private: -+ void commitUpdates(jsi::Runtime &rt, const UpdatesBatch &updatesBatch); -+ -+ const bool isReducedMotion_; -+ bool shouldFlushRegistry_ = false; -+ std::shared_ptr workletsModuleProxy_; -+ -+ std::unique_ptr eventHandlerRegistry_; -+ const RequestRenderFunction requestRender_; -+ std::vector> frameCallbacks_; -+ volatile bool renderRequested_{false}; -+ std::function onRenderCallback_; -+ AnimatedSensorModule animatedSensorModule_; -+ const std::shared_ptr jsLogger_; -+ std::shared_ptr layoutAnimationsManager_; -+ GetAnimationTimestampFunction getAnimationTimestamp_; -+ -+ bool cssLoopRunning_{false}; -+ bool shouldUpdateCssAnimations_{true}; -+ double currentCssTimestamp_{0}; -+ -+ const std::shared_ptr animatedPropsRegistry_; -+ const std::shared_ptr staticPropsRegistry_; -+ const std::shared_ptr updatesRegistryManager_; -+ const std::shared_ptr viewStylesRepository_; -+ const std::shared_ptr cssAnimationKeyframesRegistry_; -+ const std::shared_ptr cssAnimationsRegistry_; -+ const std::shared_ptr cssTransitionsRegistry_; -+ -+ const SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction_; -+ -+ std::shared_ptr uiManager_; -+ std::shared_ptr layoutAnimationsProxy_; -+ std::shared_ptr commitHook_; -+ std::shared_ptr mountHook_; -+ std::set layoutAnimationFlushRequests_; -+ bool layoutAnimationRenderRequested_; -+ -+ const KeyboardEventSubscribeFunction subscribeForKeyboardEventsFunction_; -+ const KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEventsFunction_; -+ -+#ifndef NDEBUG -+ worklets::SingleInstanceChecker singleInstanceChecker_; -+#endif // NDEBUG -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxySpec.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxySpec.h -new file mode 100644 -index 0000000..11b281b ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/ReanimatedModuleProxySpec.h -@@ -0,0 +1,125 @@ -+#pragma once -+ -+#include -+#include -+ -+#include -+#include -+#include -+ -+using namespace facebook; -+using namespace react; -+ -+namespace reanimated { -+ -+class JSI_EXPORT ReanimatedModuleProxySpec : public TurboModule { -+ protected: -+ explicit ReanimatedModuleProxySpec( -+ const std::shared_ptr &jsInvoker); -+ -+ public: -+ // events -+ virtual jsi::Value registerEventHandler( -+ jsi::Runtime &rt, -+ const jsi::Value &worklet, -+ const jsi::Value &eventName, -+ const jsi::Value &emitterReactTag) = 0; -+ virtual void unregisterEventHandler( -+ jsi::Runtime &rt, -+ const jsi::Value ®istrationId) = 0; -+ -+ // views -+ virtual jsi::Value getViewProp( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &propName, -+ const jsi::Value &callback) = 0; -+ -+ // sensors -+ virtual jsi::Value registerSensor( -+ jsi::Runtime &rt, -+ const jsi::Value &sensorType, -+ const jsi::Value &interval, -+ const jsi::Value &iosReferenceFrame, -+ const jsi::Value &sensorDataContainer) = 0; -+ virtual void unregisterSensor( -+ jsi::Runtime &rt, -+ const jsi::Value &sensorId) = 0; -+ -+ // keyboard -+ virtual jsi::Value subscribeForKeyboardEvents( -+ jsi::Runtime &rt, -+ const jsi::Value &keyboardEventContainer, -+ const jsi::Value &isStatusBarTranslucent, -+ const jsi::Value &isNavigationBarTranslucent) = 0; -+ virtual void unsubscribeFromKeyboardEvents( -+ jsi::Runtime &rt, -+ const jsi::Value &listenerId) = 0; -+ -+ // feature flags -+ virtual jsi::Value getStaticFeatureFlag( -+ jsi::Runtime &rt, -+ const jsi::Value &name) = 0; -+ -+ virtual jsi::Value setDynamicFeatureFlag( -+ jsi::Runtime &rt, -+ const jsi::Value &name, -+ const jsi::Value &value) = 0; -+ -+ // layout animations -+ virtual jsi::Value configureLayoutAnimationBatch( -+ jsi::Runtime &rt, -+ const jsi::Value &layoutAnimationsBatch) = 0; -+ -+ virtual void setShouldAnimateExiting( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &shouldAnimate) = 0; -+ -+ // JS View style -+ virtual void setViewStyle( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &viewStyle) = 0; -+ -+ // Cleanup -+ virtual void markNodeAsRemovable( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper) = 0; -+ virtual void unmarkNodeAsRemovable( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag) = 0; -+ -+ // CSS animation keyframes -+ virtual void registerCSSKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &animationName, -+ const jsi::Value &viewName, -+ const jsi::Value &keyframesConfig) = 0; -+ virtual void unregisterCSSKeyframes( -+ jsi::Runtime &rt, -+ const jsi::Value &animationName, -+ const jsi::Value &viewName) = 0; -+ -+ // CSS animations -+ virtual void applyCSSAnimations( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &animationUpdates) = 0; -+ virtual void unregisterCSSAnimations(const jsi::Value &viewTag) = 0; -+ -+ // CSS transitions -+ virtual void registerCSSTransition( -+ jsi::Runtime &rt, -+ const jsi::Value &shadowNodeWrapper, -+ const jsi::Value &transitionConfig) = 0; -+ virtual void updateCSSTransition( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag, -+ const jsi::Value &configUpdates) = 0; -+ virtual void unregisterCSSTransition( -+ jsi::Runtime &rt, -+ const jsi::Value &viewTag) = 0; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/RNRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/RNRuntimeDecorator.h -new file mode 100644 -index 0000000..0d627de ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/RNRuntimeDecorator.h -@@ -0,0 +1,28 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+ -+using namespace facebook; -+ -+namespace reanimated { -+ -+class RNRuntimeDecorator { -+ public: -+ static void decorate( -+ jsi::Runtime &rnRuntime, -+ jsi::Runtime &uiRuntime, -+ const std::shared_ptr &reanimatedModuleProxy); -+ -+#ifdef IS_REANIMATED_EXAMPLE_APP -+ private: -+ static void installDebugBindings( -+ jsi::Runtime &rnRuntime, -+ const std::shared_ptr &reanimatedModuleProxy); -+#endif // IS_REANIMATED_EXAMPLE_APP -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/UIRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/UIRuntimeDecorator.h -new file mode 100644 -index 0000000..d46d967 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/UIRuntimeDecorator.h -@@ -0,0 +1,26 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+using namespace facebook; -+ -+namespace reanimated { -+ -+class UIRuntimeDecorator { -+ public: -+ static void decorate( -+ jsi::Runtime &uiRuntime, -+ const ObtainPropFunction obtainPropFunction, -+ const UpdatePropsFunction updateProps, -+ const MeasureFunction measure, -+ const DispatchCommandFunction dispatchCommand, -+ const GetAnimationTimestampFunction getAnimationTimestamp, -+ const SetGestureStateFunction setGestureState, -+ const ProgressLayoutAnimationFunction progressLayoutAnimation, -+ const EndLayoutAnimationFunction endLayoutAnimation, -+ const MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueue); -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/FeatureFlags.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/FeatureFlags.h -new file mode 100644 -index 0000000..b42d685 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/FeatureFlags.h -@@ -0,0 +1,44 @@ -+#pragma once -+#include -+#include -+ -+namespace reanimated { -+ -+class StaticFeatureFlags { -+ public: -+#ifdef REANIMATED_FEATURE_FLAGS -+ -+// Convert the value under x into a string -+#define XTOSTRING(x) #x -+// Evaluate the flag value; without this step, it would stringify the flag name -+// itself instead of the flag value -+#define TOSTRING(x) XTOSTRING(x) -+ -+ static constexpr bool getFlag(const std::string_view &name) { -+ std::string nameStr = name.data(); -+ std::string featureFlags = TOSTRING(REANIMATED_FEATURE_FLAGS); -+ if (featureFlags.find("[" + nameStr + ":") == std::string::npos) { -+ throw std::logic_error("Unable to recognize flag: " + nameStr); -+ } -+ return featureFlags.find("[" + nameStr + ":true]") != std::string::npos; -+ } -+ -+#else -+ -+ static constexpr bool getFlag(const std::string_view &) { -+ return false; -+ } -+ -+#endif -+}; -+ -+class DynamicFeatureFlags { -+ public: -+ static bool getFlag(const std::string &name); -+ static void setFlag(const std::string &name, bool value); -+ -+ private: -+ static std::unordered_map flags_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformDepMethodsHolder.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformDepMethodsHolder.h -new file mode 100644 -index 0000000..dbea4ba ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformDepMethodsHolder.h -@@ -0,0 +1,63 @@ -+#pragma once -+ -+#include -+#include -+#include -+ -+#include -+#include -+#include -+ -+using namespace facebook; -+using namespace react; -+ -+namespace reanimated { -+ -+using UpdatePropsFunction = -+ std::function; -+using ObtainPropFunction = std::function; -+using DispatchCommandFunction = std::function; -+using MeasureFunction = std::function< -+ jsi::Value(jsi::Runtime &rt, const jsi::Value &shadowNodeValue)>; -+ -+using RequestRenderFunction = -+ std::function)>; -+using SynchronouslyUpdateUIPropsFunction = -+ std::function &, const std::vector &)>; -+using GetAnimationTimestampFunction = std::function; -+ -+using ProgressLayoutAnimationFunction = -+ std::function; -+using EndLayoutAnimationFunction = std::function; -+ -+using RegisterSensorFunction = -+ std::function)>; -+using UnregisterSensorFunction = std::function; -+using SetGestureStateFunction = std::function; -+using KeyboardEventSubscribeFunction = -+ std::function, bool, bool)>; -+using KeyboardEventUnsubscribeFunction = std::function; -+using MaybeFlushUIUpdatesQueueFunction = std::function; -+ -+struct PlatformDepMethodsHolder { -+ RequestRenderFunction requestRender; -+#ifdef ANDROID -+ SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction; -+#endif // ANDROID -+ GetAnimationTimestampFunction getAnimationTimestamp; -+ RegisterSensorFunction registerSensor; -+ UnregisterSensorFunction unregisterSensor; -+ SetGestureStateFunction setGestureStateFunction; -+ KeyboardEventSubscribeFunction subscribeForKeyboardEvents; -+ KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEvents; -+ MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueueFunction; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedSystraceSection.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedSystraceSection.h -new file mode 100644 -index 0000000..c3b17e9 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedSystraceSection.h -@@ -0,0 +1,135 @@ -+#pragma once -+#include -+#include -+ -+#ifdef REANIMATED_PROFILING -+ -+#if defined(__APPLE__) -+#include -+ -+#if OS_LOG_TARGET_HAS_10_15_FEATURES -+#include -+#include -+#include -+#endif // OS_LOG_TARGET_HAS_10_15_FEATURES -+ -+#elif defined(ANDROID) -+ -+#include -+ -+#endif // defined(ANDROID) -+ -+#endif // REANIMATED_PROFILING -+ -+namespace reanimated { -+ -+#if defined(ANDROID) && defined(REANIMATED_PROFILING) -+ -+struct ReanimatedSystraceSection { -+ public: -+ template -+ explicit ReanimatedSystraceSection( -+ const char *name, -+ ConvertsToStringPiece &&...args) { -+ ATrace_beginSection(name); -+ } -+ -+ ~ReanimatedSystraceSection() { -+ ATrace_endSection(); -+ } -+}; -+ -+// The apple part is copied from React Native -+// from -+// https://github.com/facebook/react-native/blob/5697d923a05119314b4cfcd556cb243986637764/packages/react-native/ReactCommon/cxxreact/SystraceSection.h -+#elif defined(__APPLE__) && OS_LOG_TARGET_HAS_10_15_FEATURES && \ -+ defined(REANIMATED_PROFILING) -+ -+template -+struct renderer { -+ static std::string render(const T &t) { -+ std::ostringstream oss; -+ oss << t; -+ return oss.str(); -+ } -+}; -+ -+template -+static auto render(const T &t) -+ -> decltype(renderer::render(std::declval())) { -+ return renderer::render(t); -+} -+ -+inline os_log_t instrumentsLogHandle = nullptr; -+ -+static inline os_log_t getOrCreateInstrumentsLogHandle() { -+ if (!instrumentsLogHandle) { -+ instrumentsLogHandle = os_log_create( -+ "dev.reanimated.instruments", OS_LOG_CATEGORY_POINTS_OF_INTEREST); -+ } -+ return instrumentsLogHandle; -+} -+ -+struct ReanimatedSystraceSection { -+ public: -+ template -+ explicit ReanimatedSystraceSection( -+ const char *name, -+ ConvertsToStringPiece &&...args) { -+ os_log_t instrumentsLogHandle = -+ reanimated::getOrCreateInstrumentsLogHandle(); -+ -+ // If the log isn't enabled, we don't want the performance overhead of the -+ // rest of the code below. -+ if (!os_signpost_enabled(instrumentsLogHandle)) { -+ return; -+ } -+ -+ name_ = name; -+ -+ const auto argsVector = -+ std::vector{reanimated::render(args)...}; -+ std::string argsString = ""; -+ for (size_t i = 0; i < argsVector.size(); i += 2) { -+ argsString += argsVector[i] + "=" + argsVector[i + 1] + ";"; -+ } -+ -+ signpostID_ = os_signpost_id_make_with_pointer(instrumentsLogHandle, this); -+ -+ os_signpost_interval_begin( -+ instrumentsLogHandle, -+ signpostID_, -+ "Reanimated", -+ "%s begin: %s", -+ name, -+ argsString.c_str()); -+ } -+ -+ ~ReanimatedSystraceSection() { -+ os_signpost_interval_end( -+ reanimated::instrumentsLogHandle, -+ signpostID_, -+ "Reanimated", -+ "%s end", -+ name_.data()); -+ } -+ -+ private: -+ os_signpost_id_t signpostID_ = OS_SIGNPOST_ID_INVALID; -+ std::string_view name_; -+}; -+ -+#else -+ -+struct ReanimatedSystraceSection { -+ public: -+ template -+ explicit ReanimatedSystraceSection( -+ const char *name, -+ ConvertsToStringPiece &&...args) {} -+}; -+ -+#endif // defined(__APPLE__) && OS_LOG_TARGET_HAS_10_15_FEATURES && -+ // defined(REANIMATED_PROFILING) -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedVersion.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedVersion.h -new file mode 100644 -index 0000000..b490177 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/ReanimatedVersion.h -@@ -0,0 +1,20 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+ -+using namespace facebook; -+ -+namespace reanimated { -+ -+std::string getReanimatedCppVersion(); -+void injectReanimatedCppVersion(jsi::Runtime &); -+void checkJSVersion( -+ jsi::Runtime &, -+ const std::shared_ptr &); -+ -+}; // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/AnimationFrameCallback.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/AnimationFrameCallback.h -new file mode 100644 -index 0000000..9da8b47 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/AnimationFrameCallback.h -@@ -0,0 +1,37 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace facebook::jni; -+ -+class AnimationFrameCallback : public HybridClass { -+ public: -+ static auto constexpr kJavaDescriptor = -+ "Lcom/swmansion/reanimated/nativeProxy/AnimationFrameCallback;"; -+ -+ void onAnimationFrame(double timestampMs) { -+ callback_(timestampMs); -+ } -+ -+ static void registerNatives() { -+ javaClassStatic()->registerNatives({ -+ makeNativeMethod( -+ "onAnimationFrame", AnimationFrameCallback::onAnimationFrame), -+ }); -+ } -+ -+ private: -+ friend HybridBase; -+ -+ explicit AnimationFrameCallback(std::function callback) -+ : callback_(std::move(callback)) {} -+ -+ std::function callback_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/EventHandler.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/EventHandler.h -new file mode 100644 -index 0000000..af9080d ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/EventHandler.h -@@ -0,0 +1,48 @@ -+#pragma once -+ -+#include -+ -+#include -+#include -+ -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace facebook::jni; -+ -+class EventHandler : public HybridClass { -+ public: -+ static auto constexpr kJavaDescriptor = -+ "Lcom/swmansion/reanimated/nativeProxy/EventHandler;"; -+ -+ void receiveEvent( -+ jni::alias_ref eventKey, -+ jint emitterReactTag, -+ jni::alias_ref event) { -+ ReanimatedSystraceSection s("EventHandler::receiveEvent"); -+ handler_(eventKey, emitterReactTag, event); -+ } -+ -+ static void registerNatives() { -+ javaClassStatic()->registerNatives({ -+ makeNativeMethod("receiveEvent", EventHandler::receiveEvent), -+ }); -+ } -+ -+ private: -+ friend HybridBase; -+ -+ explicit EventHandler(std::function, -+ jint emitterReactTag, -+ jni::alias_ref)> handler) -+ : handler_(std::move(handler)) {} -+ -+ std::function< -+ void(jni::alias_ref, jint, jni::alias_ref)> -+ handler_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/KeyboardWorkletWrapper.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/KeyboardWorkletWrapper.h -new file mode 100644 -index 0000000..72bbba5 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/KeyboardWorkletWrapper.h -@@ -0,0 +1,36 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace facebook::jni; -+ -+class KeyboardWorkletWrapper : public HybridClass { -+ public: -+ static auto constexpr kJavaDescriptor = -+ "Lcom/swmansion/reanimated/keyboard/KeyboardWorkletWrapper;"; -+ -+ void invoke(int keyboardState, int height) { -+ callback_(keyboardState, height); -+ } -+ -+ static void registerNatives() { -+ javaClassStatic()->registerNatives({ -+ makeNativeMethod("invoke", KeyboardWorkletWrapper::invoke), -+ }); -+ } -+ -+ private: -+ friend HybridBase; -+ -+ explicit KeyboardWorkletWrapper(std::function callback) -+ : callback_(std::move(callback)) {} -+ -+ std::function callback_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/NativeProxy.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/NativeProxy.h -new file mode 100644 -index 0000000..8a811e5 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/NativeProxy.h -@@ -0,0 +1,120 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace facebook::jni; -+ -+class NativeProxy : public jni::HybridClass, -+ std::enable_shared_from_this { -+ public: -+ static auto constexpr kJavaDescriptor = -+ "Lcom/swmansion/reanimated/NativeProxy;"; -+ static jni::local_ref initHybrid( -+ jni::alias_ref jThis, -+ jni::alias_ref jWorkletsModule, -+ jlong jsContext, -+ jni::alias_ref -+ jsCallInvokerHolder, -+ jni::alias_ref -+ fabricUIManager); -+ -+ static void registerNatives(); -+ -+ ~NativeProxy(); -+ -+ private: -+ friend HybridBase; -+ jni::global_ref javaPart_; -+ jsi::Runtime *rnRuntime_; -+ std::shared_ptr workletsModuleProxy_; -+ std::shared_ptr reanimatedModuleProxy_; -+#ifndef NDEBUG -+ void checkJavaVersion(); -+ void injectCppVersion(); -+#endif // NDEBUG -+ // removed temporarily, event listener mechanism needs to be fixed on RN side -+ // std::shared_ptr reactScheduler_; -+ // std::shared_ptr eventListener_; -+ void installJSIBindings(); -+ void synchronouslyUpdateUIProps( -+ const std::vector &intBuffer, -+ const std::vector &doubleBuffer); -+ PlatformDepMethodsHolder getPlatformDependentMethods(); -+ -+ double getAnimationTimestamp(); -+ bool isAnyHandlerWaitingForEvent( -+ const std::string &eventName, -+ const int emitterReactTag); -+ void performOperations(); -+ bool getIsReducedMotion(); -+ void requestRender(std::function onRender); -+ void registerEventHandler(); -+ void maybeFlushUIUpdatesQueue(); -+ void setGestureState(int handlerTag, int newState); -+ int registerSensor( -+ int sensorType, -+ int interval, -+ int iosReferenceFrame, -+ std::function setter); -+ void unregisterSensor(int sensorId); -+ int subscribeForKeyboardEvents( -+ std::function callback, -+ bool isStatusBarTranslucent, -+ bool isNavigationBarTranslucent); -+ void unsubscribeFromKeyboardEvents(int listenerId); -+ void handleEvent( -+ jni::alias_ref eventName, -+ jint emitterReactTag, -+ jni::alias_ref event); -+ -+ /*** -+ * Wraps a method of `NativeProxy` in a function object capturing `this` -+ * @tparam TReturn return type of passed method -+ * @tparam TParams parameter types of passed method -+ * @param methodPtr pointer to method to be wrapped -+ * @return a function object with the same signature as the method, calling -+ * that method on `this` -+ */ -+ template -+ std::function bindThis( -+ TReturn (NativeProxy::*methodPtr)(TParams...)) { -+ // It's probably safe to pass `this` as reference here... -+ return [this, methodPtr](TParams &&...args) { -+ return (this->*methodPtr)(std::forward(args)...); -+ }; -+ } -+ -+ template -+ JMethod getJniMethod(std::string const &methodName) { -+ return javaPart_->getClass()->getMethod(methodName.c_str()); -+ } -+ -+ explicit NativeProxy( -+ jni::alias_ref jThis, -+ const std::shared_ptr &workletsModuleProxy, -+ jsi::Runtime *rnRuntime, -+ const std::shared_ptr &jsCallInvoker, -+ jni::alias_ref -+ fabricUIManager); -+ -+ void invalidateCpp(); -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/SensorSetter.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/SensorSetter.h -new file mode 100644 -index 0000000..a3fe548 ---- /dev/null -+++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/SensorSetter.h -@@ -0,0 +1,42 @@ -+#pragma once -+ -+#include -+ -+#include -+ -+namespace reanimated { -+ -+using namespace facebook; -+using namespace facebook::jni; -+ -+class SensorSetter : public HybridClass { -+ public: -+ static auto constexpr kJavaDescriptor = -+ "Lcom/swmansion/reanimated/nativeProxy/SensorSetter;"; -+ -+ void sensorSetter(jni::alias_ref value, int orientationDegrees) { -+ size_t size = value->size(); -+ auto elements = value->getRegion(0, size); -+ double array[7]; -+ for (size_t i = 0; i < size; i++) { -+ array[i] = elements[i]; -+ } -+ callback_(array, orientationDegrees); -+ } -+ -+ static void registerNatives() { -+ javaClassStatic()->registerNatives({ -+ makeNativeMethod("sensorSetter", SensorSetter::sensorSetter), -+ }); -+ } -+ -+ private: -+ friend HybridBase; -+ -+ explicit SensorSetter(std::function callback) -+ : callback_(std::move(callback)) {} -+ -+ std::function callback_; -+}; -+ -+} // namespace reanimated -diff --git a/node_modules/react-native-reanimated/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-reanimated/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin -new file mode 100644 -index 0000000..ade1764 -Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ -diff --git a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp -index 5759f9f..01247a9 100644 ---- a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp -+++ b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp -@@ -131,10 +131,6 @@ void NativeProxy::performOperations() { - reanimatedModuleProxy_->performOperations(); - } - --void NativeProxy::performNonLayoutOperations() { -- reanimatedModuleProxy_->performNonLayoutOperations(); --} -- - bool NativeProxy::getIsReducedMotion() { - static const auto method = getJniMethod("getIsReducedMotion"); - return method(javaPart_.get()); -@@ -148,9 +144,6 @@ void NativeProxy::registerNatives() { - "isAnyHandlerWaitingForEvent", - NativeProxy::isAnyHandlerWaitingForEvent), - makeNativeMethod("performOperations", NativeProxy::performOperations), -- makeNativeMethod( -- "performNonLayoutOperations", -- NativeProxy::performNonLayoutOperations), - makeNativeMethod("invalidateCpp", NativeProxy::invalidateCpp)}); - } - -diff --git a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h -index 0d69661..8a811e5 100644 ---- a/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h -+++ b/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.h -@@ -63,7 +63,6 @@ class NativeProxy : public jni::HybridClass, - const std::string &eventName, - const int emitterReactTag); - void performOperations(); -- void performNonLayoutOperations(); - bool getIsReducedMotion(); - void requestRender(std::function onRender); - void registerEventHandler(); -diff --git a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/DrawPassDetector.java b/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/DrawPassDetector.java -deleted file mode 100644 -index 0b9f285..0000000 ---- a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/DrawPassDetector.java -+++ /dev/null -@@ -1,82 +0,0 @@ --package com.swmansion.reanimated; -- --import android.app.Activity; --import android.os.Handler; --import android.os.Looper; --import android.view.View; --import android.view.ViewTreeObserver; --import com.facebook.react.bridge.ReactApplicationContext; --import com.facebook.react.bridge.UiThreadUtil; --import javax.annotation.Nullable; -- --/** Tracks whether the current UI thread turn is inside a draw pass. */ --class DrawPassDetector { -- private final ReactApplicationContext mContext; -- private final Handler mHandler = new Handler(Looper.getMainLooper()); -- private final Runnable mClearRunnable = () -> mIsInDrawPass = false; -- private boolean mIsInDrawPass = false; -- @Nullable private View mDecorView = null; -- -- private final ViewTreeObserver.OnDrawListener mOnDrawListener = -- () -> { -- mIsInDrawPass = true; -- mHandler.postAtFrontOfQueue(mClearRunnable); -- }; -- -- DrawPassDetector(ReactApplicationContext context) { -- mContext = context; -- } -- -- void initialize() { -- Activity activity = mContext.getCurrentActivity(); -- if (activity == null) { -- return; -- } -- -- View decorView = activity.getWindow().getDecorView(); -- if (decorView == mDecorView) { -- return; -- } -- -- // Decor view has changed (e.g. Activity recreated) — detach from the old one first. -- if (mDecorView != null) { -- ViewTreeObserver oldObserver = mDecorView.getViewTreeObserver(); -- if (oldObserver.isAlive()) { -- oldObserver.removeOnDrawListener(mOnDrawListener); -- } -- mDecorView = null; -- } -- -- ViewTreeObserver observer = decorView.getViewTreeObserver(); -- if (!observer.isAlive()) { -- return; -- } -- -- mDecorView = decorView; -- observer.addOnDrawListener(mOnDrawListener); -- } -- -- boolean isInDrawPass() { -- return mIsInDrawPass; -- } -- -- void invalidate() { -- if (UiThreadUtil.isOnUiThread()) { -- invalidateOnUiThread(); -- } else { -- mHandler.post(this::invalidateOnUiThread); -- } -- } -- -- private void invalidateOnUiThread() { -- if (mDecorView != null) { -- ViewTreeObserver observer = mDecorView.getViewTreeObserver(); -- if (observer.isAlive()) { -- observer.removeOnDrawListener(mOnDrawListener); -- } -- mDecorView = null; -- } -- mHandler.removeCallbacks(mClearRunnable); -- mIsInDrawPass = false; -- } --} -diff --git a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NativeProxy.java b/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NativeProxy.java -index cc12c5d..a02506c 100644 ---- a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NativeProxy.java -+++ b/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NativeProxy.java -@@ -112,8 +112,6 @@ public class NativeProxy { - - public native void performOperations(); - -- public native void performNonLayoutOperations(); -- - protected native void installJSIBindings(); - - private native void invalidateCpp(); -@@ -490,7 +488,7 @@ public class NativeProxy { - void maybeFlushUIUpdatesQueue() { - UiThreadUtil.assertOnUiThread(); - if (!mNodesManager.isAnimationRunning()) { -- mNodesManager.performOperationsRespectingDrawPass(); -+ mNodesManager.performOperations(); - } - } - } -diff --git a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java b/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java -index 1960228..a322746 100644 ---- a/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java -+++ b/node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java -@@ -44,7 +44,6 @@ public class NodesManager implements EventDispatcherListener { - private ConcurrentLinkedQueue mEventQueue = new ConcurrentLinkedQueue<>(); - private double lastFrameTimeMs; - private FabricUIManager mFabricUIManager; -- private final DrawPassDetector mDrawPassDetector; - - public NativeProxy getNativeProxy() { - return mNativeProxy; -@@ -58,8 +57,6 @@ public class NodesManager implements EventDispatcherListener { - mNativeProxy = null; - } - -- mDrawPassDetector.invalidate(); -- - if (mFabricUIManager != null) { - mFabricUIManager.getEventDispatcher().removeListener(this); - } -@@ -72,7 +69,6 @@ public class NodesManager implements EventDispatcherListener { - assert uiManager != null; - mCustomEventNamesResolver = uiManager::resolveCustomDirectEventName; - mEventEmitter = context.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class); -- mDrawPassDetector = new DrawPassDetector(context); - - mReactChoreographer = ReactChoreographer.getInstance(); - mChoreographerCallback = -@@ -126,28 +122,6 @@ public class NodesManager implements EventDispatcherListener { - } - } - -- void performNonLayoutOperations() { -- UiThreadUtil.assertOnUiThread(); -- if (mNativeProxy != null) { -- mNativeProxy.performNonLayoutOperations(); -- } -- } -- -- void performOperationsRespectingDrawPass() { -- mDrawPassDetector.initialize(); -- if (isInDrawPass()) { -- performNonLayoutOperations(); -- startUpdatingOnAnimationFrame(); -- return; -- } -- -- performOperations(); -- } -- -- boolean isInDrawPass() { -- return mDrawPassDetector.isInDrawPass(); -- } -- - private void onAnimationFrame(long frameTimeNanos) { - UiThreadUtil.assertOnUiThread(); - -@@ -156,8 +130,6 @@ public class NodesManager implements EventDispatcherListener { - Trace.beginSection("onAnimationFrame"); - } - -- mDrawPassDetector.initialize(); -- - double currentFrameTimeMs = frameTimeNanos / 1000000.; - if (mSlowAnimationsEnabled) { - currentFrameTimeMs = -@@ -217,7 +189,7 @@ public class NodesManager implements EventDispatcherListener { - // the UI thread. - if (UiThreadUtil.isOnUiThread()) { - handleEvent(event); -- performOperationsRespectingDrawPass(); -+ performOperations(); - } else { - String eventName = mCustomEventNamesResolver.resolveCustomEventName(event.getEventName()); - int viewTag = event.getViewTag(); -diff --git a/node_modules/react-native-reanimated/compatibility.json b/node_modules/react-native-reanimated/compatibility.json -index 06cc8a6..f1ba9cb 100644 ---- a/node_modules/react-native-reanimated/compatibility.json -+++ b/node_modules/react-native-reanimated/compatibility.json -@@ -5,7 +5,7 @@ - }, - "4.1.x": { - "react-native": ["0.78", "0.79", "0.80", "0.81", "0.82"], -- "react-native-worklets": ["0.5.x", "0.6.x", "0.7.x", "0.8.x"] -+ "react-native-worklets": ["0.5.x", "0.6.x", "0.7.x"] - }, - "4.0.x": { - "react-native": ["0.78", "0.79", "0.80", "0.81"], -diff --git a/node_modules/react-native-reanimated/lib/module/platform-specific/jsVersion.js b/node_modules/react-native-reanimated/lib/module/platform-specific/jsVersion.js -index 6441dcd..d75d62a 100644 ---- a/node_modules/react-native-reanimated/lib/module/platform-specific/jsVersion.js -+++ b/node_modules/react-native-reanimated/lib/module/platform-specific/jsVersion.js -@@ -5,5 +5,5 @@ - * version used to build the native part of the library in runtime. Remember to - * keep this in sync with the version declared in `package.json` - */ --export const jsVersion = '4.1.7'; -+export const jsVersion = '4.1.6'; - //# sourceMappingURL=jsVersion.js.map -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/lib/typescript/platform-specific/jsVersion.d.ts b/node_modules/react-native-reanimated/lib/typescript/platform-specific/jsVersion.d.ts -index 5bb3d58..dcc4501 100644 ---- a/node_modules/react-native-reanimated/lib/typescript/platform-specific/jsVersion.d.ts -+++ b/node_modules/react-native-reanimated/lib/typescript/platform-specific/jsVersion.d.ts -@@ -3,5 +3,5 @@ - * version used to build the native part of the library in runtime. Remember to - * keep this in sync with the version declared in `package.json` - */ --export declare const jsVersion = "4.1.7"; -+export declare const jsVersion = "4.1.6"; - //# sourceMappingURL=jsVersion.d.ts.map -\ No newline at end of file -diff --git a/node_modules/react-native-reanimated/scripts/worklets-version.json b/node_modules/react-native-reanimated/scripts/worklets-version.json -index 0b9c702..0c4da80 100644 ---- a/node_modules/react-native-reanimated/scripts/worklets-version.json -+++ b/node_modules/react-native-reanimated/scripts/worklets-version.json -@@ -1 +1,4 @@ --{ "min": "0.5.0", "max": "0.8" } -+{ -+ "min": "0.4.0", -+ "max": "0.4" -+} -diff --git a/node_modules/react-native-reanimated/src/platform-specific/jsVersion.ts b/node_modules/react-native-reanimated/src/platform-specific/jsVersion.ts -index be0f607..0e57380 100644 ---- a/node_modules/react-native-reanimated/src/platform-specific/jsVersion.ts -+++ b/node_modules/react-native-reanimated/src/platform-specific/jsVersion.ts -@@ -4,4 +4,4 @@ - * version used to build the native part of the library in runtime. Remember to - * keep this in sync with the version declared in `package.json` - */ --export const jsVersion = '4.1.7'; -+export const jsVersion = '4.1.6'; From 48eb4bc4170b598aa9407a30d95c617553917904 Mon Sep 17 00:00:00 2001 From: James Pepper Date: Tue, 9 Jun 2026 20:29:53 +0100 Subject: [PATCH 04/10] Pin @xmldom to ~0.8.13; bump Node engine Change package.json override for @xmldom/xmldom from ">=0.8.13" to "~0.8.13" to enforce a specific compatible patch range. Update package-lock.json accordingly: add nested @xmldom 0.8.13 entries for several packages and remove the top-level 0.9.10 entry. Also bump the package-lock Node engine requirement to ">=20.19.4". --- package-lock.json | 39 +++++++++++++++++++++++++++++---------- package.json | 2 +- 2 files changed, 30 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index fd3bbec..22d2a6a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -105,7 +105,7 @@ "typescript": "~5.9.2" }, "engines": { - "node": ">=20.18.0" + "node": ">=20.19.4" } }, "node_modules/@0no-co/graphql.web": { @@ -2066,6 +2066,16 @@ "wonka": "^6.3.2" } }, + "node_modules/@expo/build-tools/node_modules/@xmldom/xmldom": { + "version": "0.8.13", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.13.tgz", + "integrity": "sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/@expo/build-tools/node_modules/commander": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", @@ -3065,6 +3075,15 @@ "xmlbuilder": "^15.1.1" } }, + "node_modules/@expo/plist/node_modules/@xmldom/xmldom": { + "version": "0.8.13", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.13.tgz", + "integrity": "sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/@expo/prebuild-config": { "version": "54.0.8", "resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-54.0.8.tgz", @@ -6709,15 +6728,6 @@ "@urql/core": "^5.0.0" } }, - "node_modules/@xmldom/xmldom": { - "version": "0.9.10", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.10.tgz", - "integrity": "sha512-A9gOqLdi6cV4ibazAjcQufGj0B1y/vDqYrcuP6d/6x8P27gRS8643Dj9o1dEKtB6O7fwxb2FgBmJS2mX7gpvdw==", - "license": "MIT", - "engines": { - "node": ">=14.6" - } - }, "node_modules/@yarnpkg/lockfile": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", @@ -15485,6 +15495,15 @@ "node": ">=10.4.0" } }, + "node_modules/plist/node_modules/@xmldom/xmldom": { + "version": "0.8.13", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.13.tgz", + "integrity": "sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/pngjs": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz", diff --git a/package.json b/package.json index fd981ce..3773184 100644 --- a/package.json +++ b/package.json @@ -127,7 +127,7 @@ "overrides": { "react-native-randombytes": "^3.6.2", "react-native-renderer": "19.1.0", - "@xmldom/xmldom": ">=0.8.13", + "@xmldom/xmldom": "~0.8.13", "postcss": ">=8.5.10" }, "resolutions": { From 33588cb4ad95502d2f0c262e7fadb59a0fb0d514 Mon Sep 17 00:00:00 2001 From: James Pepper Date: Tue, 9 Jun 2026 20:53:12 +0100 Subject: [PATCH 05/10] Fix iOS EAS build: patch @react-native-firebase/app non-modular headers Adds @react-native-firebase+app+23.8.8.patch to replace includes with #if __has_include() guards in all RNFBApp iOS source files, fixing the -Werror,-Wnon-modular-include-in- framework-module build failure under use_frameworks! :static. Co-Authored-By: Claude Sonnet 4.6 --- .../@react-native-firebase+app+23.8.8.patch | 144 ++++++++++++++++++ 1 file changed, 144 insertions(+) create mode 100644 patches/@react-native-firebase+app+23.8.8.patch diff --git a/patches/@react-native-firebase+app+23.8.8.patch b/patches/@react-native-firebase+app+23.8.8.patch new file mode 100644 index 0000000..29203f2 --- /dev/null +++ b/patches/@react-native-firebase+app+23.8.8.patch @@ -0,0 +1,144 @@ +diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIRApp.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIRApp.h +index 73c0982..e31747f 100644 +--- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIRApp.h ++++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIRApp.h +@@ -16,7 +16,11 @@ + */ + + #import ++#if __has_include() ++#import ++#else + #import ++#endif + + @interface RCTConvert (FIRApp) + + (FIRApp *)firAppFromString:(NSString *)appName; +diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIROptions.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIROptions.h +index 470ac35..939a314 100644 +--- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIROptions.h ++++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIROptions.h +@@ -16,7 +16,11 @@ + */ + + #import ++#if __has_include() ++#import ++#else + #import ++#endif + + @interface RCTConvert (FIROptions) + + (FIROptions *)convertRawOptions:(NSDictionary *)rawOptions; +diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.h +index 894c019..230f90e 100644 +--- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.h ++++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.h +@@ -17,7 +17,11 @@ + + #import + ++#if __has_include() ++#import ++#else + #import ++#endif + + @interface RNFBAppModule : NSObject + +diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.m b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.m +index f679daa..7fe63e3 100644 +--- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.m ++++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.m +@@ -16,7 +16,11 @@ + */ + + #import ++#if __has_include() ++#import ++#else + #import ++#endif + + #import "RNFBAppModule.h" + #import "RNFBJSON.h" +diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBRCTEventEmitter.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBRCTEventEmitter.h +index a9ab51a..5725838 100644 +--- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBRCTEventEmitter.h ++++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBRCTEventEmitter.h +@@ -16,7 +16,11 @@ + */ + + #import ++#if __has_include() ++#import ++#else + #import ++#endif + + /** + * Listeners for Firebase events and emits them to the JS layer +diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBSharedUtils.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBSharedUtils.h +index ebfe513..40a1380 100644 +--- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBSharedUtils.h ++++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBSharedUtils.h +@@ -19,7 +19,11 @@ + #define RNFBSharedUtils_h + + #import ++#if __has_include() ++#import ++#else + #import ++#endif + + #ifdef DEBUG + #define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); +diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.h +index 43ec807..f2b8f8b 100644 +--- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.h ++++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.h +@@ -18,7 +18,11 @@ + #import + #import + ++#if __has_include() ++#import ++#else + #import ++#endif + + @interface RNFBUtilsModule : NSObject + +diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.m b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.m +index 7d28331..7598cb4 100644 +--- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.m ++++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.m +@@ -15,7 +15,11 @@ + * + */ + ++#if __has_include() ++#import ++#else + #import ++#endif + + #import "RNFBApp/RNFBSharedUtils.h" + #import "RNFBUtilsModule.h" +diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBVersion.m b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBVersion.m +index 0285c20..12eb593 100644 +--- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBVersion.m ++++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBVersion.m +@@ -15,7 +15,11 @@ + * + */ + ++#if __has_include() ++#import ++#else + #import ++#endif + + // generated file - do not modify or commit + NSString* const RNFBVersionString = @"23.8.8"; From 3c48a69a9646e80748296e8d0fc56fae87a87047 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 9 Jun 2026 20:20:48 +0000 Subject: [PATCH 06/10] Fix iOS EAS build: force static linking for RNFB pods Xcode 26's explicitly-built modules precompile RNFBApp as a framework module, and its non-modular includes are a hard error that CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES cannot suppress in that build step. Use expo-build-properties ios.forceStaticLinking (expo/expo#39742) to build RNFBApp, RNFBCrashlytics and RNFBPerf as static libraries instead of static frameworks, so the framework-module rule no longer applies. Remove the previous patch-package workarounds: the app patch was proven ineffective by the build log (the #else fallback import still compiled), and the crashlytics patch's '@import RNFBApp;' both triggered the failing module precompile and would break outright against a static library. https://claude.ai/code/session_011Pb73hN3z9CRdUGM6wfvnT --- app.json | 4 +- ios/Podfile.properties.json | 2 +- .../@react-native-firebase+app+23.8.8.patch | 144 ------------------ ...t-native-firebase+crashlytics+23.8.4.patch | 38 ----- 4 files changed, 2 insertions(+), 186 deletions(-) delete mode 100644 patches/@react-native-firebase+app+23.8.8.patch delete mode 100644 patches/@react-native-firebase+crashlytics+23.8.4.patch diff --git a/app.json b/app.json index 6ada3dc..9d77e84 100644 --- a/app.json +++ b/app.json @@ -67,9 +67,7 @@ }, "ios": { "useFrameworks": "static", - "podfileProperties": { - "use_modular_headers!": true - } + "forceStaticLinking": ["RNFBApp", "RNFBCrashlytics", "RNFBPerf"] } } ], diff --git a/ios/Podfile.properties.json b/ios/Podfile.properties.json index a7d5f68..70ed43f 100644 --- a/ios/Podfile.properties.json +++ b/ios/Podfile.properties.json @@ -3,6 +3,6 @@ "EX_DEV_CLIENT_NETWORK_INSPECTOR": "true", "newArchEnabled": "true", "ios.useFrameworks": "static", - "ios.forceStaticLinking": "[]", + "ios.forceStaticLinking": "[\"RNFBApp\",\"RNFBCrashlytics\",\"RNFBPerf\"]", "apple.privacyManifestAggregationEnabled": "true" } diff --git a/patches/@react-native-firebase+app+23.8.8.patch b/patches/@react-native-firebase+app+23.8.8.patch deleted file mode 100644 index 29203f2..0000000 --- a/patches/@react-native-firebase+app+23.8.8.patch +++ /dev/null @@ -1,144 +0,0 @@ -diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIRApp.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIRApp.h -index 73c0982..e31747f 100644 ---- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIRApp.h -+++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIRApp.h -@@ -16,7 +16,11 @@ - */ - - #import -+#if __has_include() -+#import -+#else - #import -+#endif - - @interface RCTConvert (FIRApp) - + (FIRApp *)firAppFromString:(NSString *)appName; -diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIROptions.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIROptions.h -index 470ac35..939a314 100644 ---- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIROptions.h -+++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RCTConvert+FIROptions.h -@@ -16,7 +16,11 @@ - */ - - #import -+#if __has_include() -+#import -+#else - #import -+#endif - - @interface RCTConvert (FIROptions) - + (FIROptions *)convertRawOptions:(NSDictionary *)rawOptions; -diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.h -index 894c019..230f90e 100644 ---- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.h -+++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.h -@@ -17,7 +17,11 @@ - - #import - -+#if __has_include() -+#import -+#else - #import -+#endif - - @interface RNFBAppModule : NSObject - -diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.m b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.m -index f679daa..7fe63e3 100644 ---- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.m -+++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBAppModule.m -@@ -16,7 +16,11 @@ - */ - - #import -+#if __has_include() -+#import -+#else - #import -+#endif - - #import "RNFBAppModule.h" - #import "RNFBJSON.h" -diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBRCTEventEmitter.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBRCTEventEmitter.h -index a9ab51a..5725838 100644 ---- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBRCTEventEmitter.h -+++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBRCTEventEmitter.h -@@ -16,7 +16,11 @@ - */ - - #import -+#if __has_include() -+#import -+#else - #import -+#endif - - /** - * Listeners for Firebase events and emits them to the JS layer -diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBSharedUtils.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBSharedUtils.h -index ebfe513..40a1380 100644 ---- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBSharedUtils.h -+++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBSharedUtils.h -@@ -19,7 +19,11 @@ - #define RNFBSharedUtils_h - - #import -+#if __has_include() -+#import -+#else - #import -+#endif - - #ifdef DEBUG - #define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); -diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.h b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.h -index 43ec807..f2b8f8b 100644 ---- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.h -+++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.h -@@ -18,7 +18,11 @@ - #import - #import - -+#if __has_include() -+#import -+#else - #import -+#endif - - @interface RNFBUtilsModule : NSObject - -diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.m b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.m -index 7d28331..7598cb4 100644 ---- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.m -+++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBUtilsModule.m -@@ -15,7 +15,11 @@ - * - */ - -+#if __has_include() -+#import -+#else - #import -+#endif - - #import "RNFBApp/RNFBSharedUtils.h" - #import "RNFBUtilsModule.h" -diff --git a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBVersion.m b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBVersion.m -index 0285c20..12eb593 100644 ---- a/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBVersion.m -+++ b/node_modules/@react-native-firebase/app/ios/RNFBApp/RNFBVersion.m -@@ -15,7 +15,11 @@ - * - */ - -+#if __has_include() -+#import -+#else - #import -+#endif - - // generated file - do not modify or commit - NSString* const RNFBVersionString = @"23.8.8"; diff --git a/patches/@react-native-firebase+crashlytics+23.8.4.patch b/patches/@react-native-firebase+crashlytics+23.8.4.patch deleted file mode 100644 index 93e2985..0000000 --- a/patches/@react-native-firebase+crashlytics+23.8.4.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff --git a/node_modules/@react-native-firebase/crashlytics/ios/RNFBCrashlytics/RNFBCrashlyticsModule.h b/node_modules/@react-native-firebase/crashlytics/ios/RNFBCrashlytics/RNFBCrashlyticsModule.h -index c7b1739..bc8d61a 100644 ---- a/node_modules/@react-native-firebase/crashlytics/ios/RNFBCrashlytics/RNFBCrashlyticsModule.h -+++ b/node_modules/@react-native-firebase/crashlytics/ios/RNFBCrashlytics/RNFBCrashlyticsModule.h -@@ -17,7 +17,13 @@ - - #import - -+@import RNFBApp; -+ -+#if __has_include() -+#import -+#else - #import -+#endif - - @interface RNFBCrashlyticsModule : NSObject - -diff --git a/node_modules/@react-native-firebase/crashlytics/ios/RNFBCrashlytics/RNFBCrashlyticsModule.m b/node_modules/@react-native-firebase/crashlytics/ios/RNFBCrashlytics/RNFBCrashlyticsModule.m -index ada982b..3bd1a0d 100644 ---- a/node_modules/@react-native-firebase/crashlytics/ios/RNFBCrashlytics/RNFBCrashlyticsModule.m -+++ b/node_modules/@react-native-firebase/crashlytics/ios/RNFBCrashlytics/RNFBCrashlyticsModule.m -@@ -18,9 +18,15 @@ - #include - #include - -+#if __has_include() -+#import -+#import -+#import -+#else - #import - #import - #import -+#endif - - #import - #import "RNFBApp/RNFBSharedUtils.h" From 787e2fd19649de63c40548a9f07f67a14c871810 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 9 Jun 2026 20:33:45 +0000 Subject: [PATCH 07/10] Update changelog entry for the RNFB iOS build fix Describe the forceStaticLinking mechanism that replaced the patch-package workarounds and the removal of the unused use_modular_headers podfile property. https://claude.ai/code/session_011Pb73hN3z9CRdUGM6wfvnT --- CHANGELOG.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa08064..4e26e7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,9 +29,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - **iOS Build Error**: Fixed build failure caused by non-modular header includes in React Native Firebase - - Removed `use_modular_headers!` from Podfile which was causing RNFBApp to fail when importing React-Core headers - - Firebase works correctly with static frameworks without requiring modular headers - - Resolves Xcode build errors: "include of non-modular header inside framework module" + - Resolves Xcode 26 build errors: "include of non-modular header inside framework module 'RNFBApp...'" + - Added `ios.forceStaticLinking` for `RNFBApp`, `RNFBCrashlytics` and `RNFBPerf` via `expo-build-properties` so the Firebase pods build as static libraries instead of static frameworks (Expo SDK 54 mechanism, expo/expo#39742) + - Removed the `@react-native-firebase` patch-package patches that previously attempted to work around the header errors (ineffective under Xcode 26 explicitly-built modules) + - Removed unused `use_modular_headers!` podfile property from app.json ## [1.2.0] - 2025-11-05 From e8e5a2e9d5561843a4e1e441a1b0134599d0c87c Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 10 Jun 2026 05:49:47 +0000 Subject: [PATCH 08/10] Pin react-native-reanimated to exact 4.1.6 to fix Android EAS build The lockfile had resolved the ~4.1.6 range to 4.1.7, but the repo's patch-package patch (patches/react-native-reanimated+4.1.6.patch) was generated against 4.1.6. It removes performNonLayoutOperations from ReanimatedModuleProxy in Common/cpp, and 4.1.7's android/NativeProxy.cpp added a call site the patch doesn't cover, causing the C++ compile error: NativeProxy.cpp:135: no member named 'performNonLayoutOperations' in 'reanimated::ReanimatedModuleProxy' Pinning to exactly 4.1.6 keeps the installed package in sync with the patch. Verified patch-package applies cleanly to 4.1.6 with no dangling references to the removed methods in the Android, Common, or Apple native sources. https://claude.ai/code/session_01MJ2ySZUv4HUKwVHn5BMDU8 --- package-lock.json | 21 +++++++++++---------- package.json | 2 +- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 22d2a6a..dbb92c6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -78,7 +78,7 @@ "react-native-get-random-values": "^1.11.0", "react-native-polyfill-globals": "^3.1.0", "react-native-qrcode-svg": "^6.3.21", - "react-native-reanimated": "~4.1.6", + "react-native-reanimated": "4.1.6", "react-native-safe-area-context": "~5.6.2", "react-native-screens": "~4.16.0", "react-native-svg": "15.12.1", @@ -16717,24 +16717,25 @@ } }, "node_modules/react-native-reanimated": { - "version": "4.1.7", - "resolved": "https://registry.npmjs.org/react-native-reanimated/-/react-native-reanimated-4.1.7.tgz", - "integrity": "sha512-Q4H6xA3Tn7QL0/E/KjI86I1KK4tcf+ErRE04LH34Etka2oVQhW6oXQ+Q8ZcDCVxiWp5vgbBH6XcH8BOo4w/Rhg==", + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/react-native-reanimated/-/react-native-reanimated-4.1.6.tgz", + "integrity": "sha512-F+ZJBYiok/6Jzp1re75F/9aLzkgoQCOh4yxrnwATa8392RvM3kx+fiXXFvwcgE59v48lMwd9q0nzF1oJLXpfxQ==", "license": "MIT", "dependencies": { "react-native-is-edge-to-edge": "^1.2.1", - "semver": "^7.7.2" + "semver": "7.7.2" }, "peerDependencies": { + "@babel/core": "^7.0.0-0", "react": "*", - "react-native": "0.78 - 0.82", - "react-native-worklets": "0.5 - 0.8" + "react-native": "*", + "react-native-worklets": ">=0.5.0" } }, "node_modules/react-native-reanimated/node_modules/semver": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.1.tgz", - "integrity": "sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==", + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "license": "ISC", "bin": { "semver": "bin/semver.js" diff --git a/package.json b/package.json index 3773184..b6b94b4 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,7 @@ "react-native-get-random-values": "^1.11.0", "react-native-polyfill-globals": "^3.1.0", "react-native-qrcode-svg": "^6.3.21", - "react-native-reanimated": "~4.1.6", + "react-native-reanimated": "4.1.6", "react-native-safe-area-context": "~5.6.2", "react-native-screens": "~4.16.0", "react-native-svg": "15.12.1", From 858b769f0c639bcb46e79a9e1581661ac95919d7 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 10 Jun 2026 05:59:52 +0000 Subject: [PATCH 09/10] Make patch-package fail loudly on local installs patch-package only exits non-zero on failed patch application when CI is set; locally it just warns, letting a broken native patch go unnoticed until a build fails. --error-on-fail surfaces it at install time. https://claude.ai/code/session_01MJ2ySZUv4HUKwVHn5BMDU8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b6b94b4..208c2a9 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "ios": "expo run:ios --dev-client", "android-debug": "expo run:android --dev-client --clear", "ios-debug": "expo run:ios --dev-client --clear", - "postinstall": "patch-package" + "postinstall": "patch-package --error-on-fail" }, "dependencies": { "@babel/core": "^7.29.0", From 7a98b1325f3bf0c2b75c1908ff4410290337c7f8 Mon Sep 17 00:00:00 2001 From: James Pepper Date: Wed, 10 Jun 2026 07:56:57 +0100 Subject: [PATCH 10/10] Release v1.2.2: bump version and update changelog - Bump version to 1.2.2 in package.json, package-lock.json, app.json, android/app/build.gradle and ios/BitSleuthWallet/Info.plist - Convert the [Unreleased] changelog section into the 1.2.2 entry and backfill notable changes since v1.2.1 (Satoshi fee fallback, Firebase Performance, reanimated pin, security fixes, build fixes) Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 40 ++++++++++++++++++++++++++++------ android/app/build.gradle | 2 +- app.json | 2 +- ios/BitSleuthWallet/Info.plist | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 39 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e26e7a..dcb99c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.2] - 2026-06-10 + ### Added - **Open Source Release**: BitSleuth Wallet is now open source under AGPL-3.0 license - GitHub Actions workflows for CI/CD (lint, build verification, security scanning) @@ -18,6 +20,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Security scanning with dependency review and secret detection - GitHub Discussions for community support - Issue and PR templates for structured contributions +- **Satoshi API Fee Fallback**: Added a secondary fee-estimate source so fee recommendations remain available when the Esplora `/fee-estimates` endpoint fails +- **Firebase Performance Monitoring**: Enabled app performance tracking alongside Crashlytics (crash reporting and performance only — no analytics) +- **Automated GitHub Releases**: Pushing a version tag now creates the GitHub release automatically with notes extracted from this changelog +- **UI Polish**: Premium animations, haptic feedback, and micro-interactions across wallet flows, plus refined theme and typography + +### Changed +- Pinned `react-native-reanimated` to exact version 4.1.6 (with patch-package patch) to keep Android EAS builds reproducible +- `patch-package` now fails loudly on local installs so broken patches are caught early +- Raised the Node.js engine requirement to >=20.19.4 for Metro compatibility +- Downgraded Gradle to 9.3 for Android build stability +- Aligned dependency versions with Expo SDK 54 expectations +- Updated `@react-native-firebase` packages to 23.8.x +- Updated iOS liquid glass tab documentation and checks from iOS 18+ to iOS 26+ +- Routine dependency updates (yaml, tar, lodash, hono, react-native-svg, lucide, Gradle wrapper, firebase-crashlytics-gradle, GitHub Actions) + +### Fixed +- **iOS Build Error**: Fixed build failure caused by non-modular header includes in React Native Firebase + - Resolves Xcode 26 build errors: "include of non-modular header inside framework module 'RNFBApp...'" + - Added `ios.forceStaticLinking` for `RNFBApp`, `RNFBCrashlytics` and `RNFBPerf` via `expo-build-properties` so the Firebase pods build as static libraries instead of static frameworks (Expo SDK 54 mechanism, expo/expo#39742) + - Removed the `@react-native-firebase` patch-package patches that previously attempted to work around the header errors (ineffective under Xcode 26 explicitly-built modules) + - Removed unused `use_modular_headers!` podfile property from app.json +- **Android EAS Build**: Fixed build failure caused by Android build artifacts accidentally included in the reanimated patch +- **Receive Tab Performance**: Fixed QR code rendering performance and New Address refresh behavior +- **Wallet Import Speed**: Optimized transaction fetching during wallet import +- **Address Validation**: Bitcoin address validation now performs proper checksum verification +- Fixed TypeScript build errors in `AnimatedNumber` under Reanimated v4 and improved type safety in `rbf-service.ts` ### Security - **CVE-2025-55182**: Updated React to version 19.1.2 to address security vulnerability @@ -26,13 +54,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated `@types/react` from ~19.1.10 to ~19.1.2 to align with React version - All peer dependencies remain compatible (React Native 0.81.5, Expo SDK 54, @tanstack/react-query, zustand, React Native Reanimated, Expo Router, NativeWind) - No breaking changes or compatibility issues - -### Fixed -- **iOS Build Error**: Fixed build failure caused by non-modular header includes in React Native Firebase - - Resolves Xcode 26 build errors: "include of non-modular header inside framework module 'RNFBApp...'" - - Added `ios.forceStaticLinking` for `RNFBApp`, `RNFBCrashlytics` and `RNFBPerf` via `expo-build-properties` so the Firebase pods build as static libraries instead of static frameworks (Expo SDK 54 mechanism, expo/expo#39742) - - Removed the `@react-native-firebase` patch-package patches that previously attempted to work around the header errors (ineffective under Xcode 26 explicitly-built modules) - - Removed unused `use_modular_headers!` podfile property from app.json +- **CVE-2026-2391**: Upgraded `qs` from 6.14.1 to 6.15.0 +- Forced `@xmldom/xmldom` (pinned to ~0.8.13) and `postcss` to patched versions via npm overrides +- Resolved remaining high-severity advisories via `npm audit fix` +- Removed Firebase config files and API keys from the repository; added example templates and setup documentation +- Removed the debug keystore from the repository and added keystore patterns to `.gitignore` ## [1.2.0] - 2025-11-05 diff --git a/android/app/build.gradle b/android/app/build.gradle index c74064c..5cf2f7c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -93,7 +93,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 - versionName "1.2.1" + versionName "1.2.2" buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\"" } diff --git a/app.json b/app.json index 9d77e84..6ee114a 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "BitSleuth Wallet", "slug": "bitsleuth-wallet", - "version": "1.2.1", + "version": "1.2.2", "orientation": "portrait", "icon": "./assets/images/icon.png", "scheme": "myapp", diff --git a/ios/BitSleuthWallet/Info.plist b/ios/BitSleuthWallet/Info.plist index 0568451..10ecf26 100644 --- a/ios/BitSleuthWallet/Info.plist +++ b/ios/BitSleuthWallet/Info.plist @@ -19,7 +19,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 1.2.1 + 1.2.2 CFBundleSignature ???? CFBundleURLTypes diff --git a/package-lock.json b/package-lock.json index dbb92c6..fade3d6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bitsleuth-wallet", - "version": "1.2.1", + "version": "1.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bitsleuth-wallet", - "version": "1.2.1", + "version": "1.2.2", "hasInstallScript": true, "license": "AGPL-3.0", "dependencies": { diff --git a/package.json b/package.json index 208c2a9..f81744b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "bitsleuth-wallet", "main": "index.js", - "version": "1.2.1", + "version": "1.2.2", "license": "AGPL-3.0", "packageManager": "npm@10.2.4", "engines": {